我已经使用这些代码在我的网站上实现了触控功能,它适用于iPad / iPhone。
// registering touch events
function initTouchEvents() {
// if a device is a touch device
if (window.Touch) {
document.addEventListener("touchstart", touchHandler, true);
document.addEventListener("touchmove", touchHandler, true);
document.addEventListener("touchend", touchHandler, true);
document.addEventListener("touchcancel", touchHandler, true);
}
}
// making items sortable in touch screen devices
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;
}
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);
if (event.type == "touchmove") {
event.preventDefault();
}
}
但是当我在触摸屏电脑上测试我的网站时,它没有运行,我发现window.Touch
仅适用于iPhone / iPad。我还尝试了其他各种活动,例如typeof(window.ontouchstart != 'undefined')
和('ontouchstart' in window || typeof TouchEvent != "undefined")
,但它没有检测到它是触摸屏,也没有注册事件进行触摸移动。
我在这里要求的是javascript事件可以检测所有触摸设备(IOS / Android / Windows / OSX)并运行注册事件。
答案 0 :(得分:4)
Phantom Limb使桌面浏览器模拟触摸事件
答案 1 :(得分:1)
我认为chrome在控制台设置中“模拟触摸事件”。试着检查一下。
按 CTRL + SHIFT + I 或只需执行 F12 ,然后点击下方的齿轮图标对。然后检查“模拟触摸事件”。我认为这应该触发触摸事件。