3

我已经使用这些代码在我的网站上实现了触摸功能,它适用于 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();
    }
}

但是当我在触摸屏 PC 上测试我的网站时,它没有运行,我发现它window.Touch只能运行在 iPhone/iPad 上。而且我还尝试了各种其他事件,例如typeof(window.ontouchstart != 'undefined')('ontouchstart' in window || typeof TouchEvent != "undefined")但它没有检测到它是触摸屏,也没有注册触摸移动的事件。

我在这里要问的是 javascript 中的一个事件,它可以检测所有触摸设备(即 IOS/Android/Windows/OSX)并运行注册事件。

4

2 回答 2

4

Phantom Limb 让桌面浏览器模拟触摸事件

https://github.com/brian-c/phantom-limb

于 2012-04-17T09:45:06.387 回答
1

我认为 chrome 在控制台设置中有“模拟触摸事件”。试着检查一下。

CTRL+ SHIFT+I或只是 do F12,然后单击右下角的齿轮图标。然后检查“模拟触摸事件”。我认为这应该触发触摸事件。

于 2012-04-17T09:39:40.207 回答