码迷,mamicode.com
首页 > 其他好文 > 详细

Zepto touch 修复bug

时间:2015-05-11 14:27:54      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

 

Zepto 官方 issues

初步解决方案

百度 GMU上拉滑动实例页面

Fix

https://github.com/madrobby/zepto/issues/315#issuecomment-8386027

touch.js

 

.on(touchmove MSPointerMove pointermove, function(e){
    if((_isPointerType = isPointerEventType(e, move)) &&
        !isPrimaryTouch(e)) return
    firstTouch = _isPointerType ? e : e.touches[0]
    cancelLongTap()
    touch.x2 = firstTouch.pageX
    touch.y2 = firstTouch.pageY

    deltaX += Math.abs(touch.x1 - touch.x2)
    deltaY += Math.abs(touch.y1 - touch.y2)

    /**
     * 修复 android 4.4 swipe 事件
     * https://github.com/madrobby/zepto/issues/315#issuecomment-8386027
     */
    if (touch.x2 && Math.abs(touch.x1 - touch.x2) > 10)
        e.preventDefault()
})

 

Zepto touch 修复bug

标签:

原文地址:http://www.cnblogs.com/huanlei/p/4494227.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!