zoukankan      html  css  js  c++  java
  • 移动设备比较好事件处理方式

    event.changedTouches[0]:

    如果是jquery的event对象,使用event.originalEvent.changedTouches[0]

    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);
    event.preventDefault();
    }
     
    function init()
    {
       document.addEventListener("touchstart", touchHandler, true);
       document.addEventListener("touchmove", touchHandler, true);
       document.addEventListener("touchend", touchHandler, true);
       document.addEventListener("touchcancel", touchHandler, true);     
    }

  • 相关阅读:
    ThinkPhp学习11
    ThinkPhp学习10
    1.自我介绍
    Axure高级教程--在原型中插入视频
    Axure制作iphone手机交互模型—覆盖切换
    对产品的一些总结
    详解Axure的Masters功能
    详解使用Axure 制作Tab切换功能
    产品经理的初识
    作为产品经理--如何写好PRD文档
  • 原文地址:https://www.cnblogs.com/gaoxue/p/2501749.html
Copyright © 2011-2022 走看看