为了开发和调试移动设备和平板电脑应用程序,我希望能够让我的鼠标模拟touchstart,touchmove和touchend。
我找到了两种可能性:
幻影肢体 http://www.vodori.com/blog/phantom-limb.html (似乎不起作用)
ChromeTouch https://chrome.google.com/webstore/detail/ncegfehgjifmmpnjaihnjpbpddjjebme (滚动页面,但不会触发触摸事件)
有没有人知道会在桌面webkit浏览器中触发触摸事件的插件?
答案 0 :(得分:2)
我发现执行touchmove的唯一办法是做一些像这样手动编码的东西:
(function(){
var isDown = false
, dragging
;
$('body').bind('mousedown', function(){ isDown = true; });
$('body').bind('mousemove', function(){ if(isDown) { dragging(); } });
$('body').bind('touchmove', function(){ dragging(); });
$('body').bind('mouseup', function(){ isDown = false; });
dragging = function () {
console.log('content being drug');
}
})();