我正在使用以下腳本將觸摸事件轉換爲鼠標事件。它工作得很好,但是在兩個觸摸事件之間(例如通過平移圖的數據)第二個事件不會被觸發。然後觸發下一個事件,接下來不是,依此類推。將觸摸事件轉換爲鼠標事件僅適用於每兩秒
所以這是我的功能,所以發現here
function touchHandler(event)
{
var touches = event.changedTouches,
first = touches[0],
type = "";
switch(event.type)
{
case "touchstart": type = "mousedown"; break;
case "touchmove": type = "mousemove"; break;
case "touchend": type = "mouseup"; break;
default: return;
}
// initMouseEvent(type, canBubble, cancelable, view, clickCount,
// screenX, screenY, clientX, clientY, ctrlKey,
// altKey, shiftKey, metaKey, button, relatedTarget);
var simulatedEvent = document.createEvent("MouseEvent");
simulatedEvent.initMouseEvent(type, true, true, window, 1,
first.screenX, first.screenY,
first.clientX, first.clientY, false,
false, false, false, 0/*left*/, null);
first.target.dispatchEvent(simulatedEvent);
event.preventDefault();
}
function init()
{
document.addEventListener("touchstart", touchHandler, true);
document.addEventListener("touchmove", touchHandler, true);
document.addEventListener("touchend", touchHandler, true);
document.addEventListener("touchcancel", touchHandler, true);
}
任何人都知道爲什麼這種行爲是這樣呢?
更新:我發現,'first.target'是第一個'div.dragcover',在第二個嘗試它''rect',然後再'div.dragcover'等。任何人都知道這是爲什麼?
您似乎並未將touchcancel事件轉換爲mouseevent。那是故意的嗎? –
我真的不需要touchcancel事件,我不知道我應該綁定哪個鼠標事件,有什麼想法? – threxx