0

我正在尝试使用画布照片,但无法使其对移动/标签有用。

您能否指导我如何使此脚本响应触摸事件。我的 Android Stock 浏览器在打开脚本时也崩溃了。

在此处查看演示

4

1 回答 1

1

我总是用这样的东西

var touchdevice = ('ontouchstart' in window);
var START_EVENT = touchdevice ? 'touchstart' : 'mousedown';
var MOVE_EVENT = touchdevice ? 'touchmove' : 'mousemove';
var END_EVENT = touchdevice ? 'touchend' : 'mouseup';

并在这样的代码中使用它:

$('#something1').on(START_EVENT, function (event) {
  dosomething1(event);
});
$('#something2').on(END_EVENT, function (event) {
  dosomething2(event);
});
$('#something3').on(MOVE_EVENT, function (event) {
  dosomething3(event);
})

这将在“鼠标”和“触摸”事件之间自动切换

于 2012-12-10T07:20:16.203 回答