1.低版本的手机QQ内置浏览器,微信内置浏览器不支持鼠标事件
$(‘#startBtn‘).parent().on({ mousedown: function () { game.quicken(1); }, mouseup: function () { if (mouseTimer) { clearTimeout(mouseTimer); } mouseTimer = setTimeout(function () { clickTimeSpan = 300; setTimeout(function () { clickTimeSpan = 500; }, 200); }, 400); }, dblclick: function () { return false; } });
2.但是支持触摸事件
$(‘#startBtn‘).parent().on({ touchstart:function(){ game.quicken(1); return false; }, touchend: function () { if (mouseTimer) { clearTimeout(mouseTimer); } mouseTimer = setTimeout(function () { clickTimeSpan = 300; setTimeout(function () { clickTimeSpan = 500; }, 200); }, 400); } });
时间: 2024-10-13 07:19:25