Zepto.js touch模块深入分析 解决手机点击事件

源码:

//	 Zepto.js
//	 (c) 2010-2015 Thomas Fuchs
//	 Zepto.js may be freely distributed under the MIT license.

;
(function($) {
  var touch = {},
    touchTimeout, tapTimeout, swipeTimeout, longTapTimeout,
    longTapDelay = 750,
    gesture
    function swipeDirection(x1, x2, y1, y2) {
      return Math.abs(x1 - x2) >=
        Math.abs(y1 - y2) ? (x1 - x2 > 0 ? ‘Left‘ : ‘Right‘) : (y1 - y2 > 0 ? ‘Up‘ : ‘Down‘)
    }
    function longTap() {
      longTapTimeout = null
      if (touch.last) {
        touch.el.trigger(‘longTap‘)
        touch = {}
      }
    }
    function cancelLongTap() {
      if (longTapTimeout) clearTimeout(longTapTimeout)
      longTapTimeout = null
    }
    function cancelAll() {
      if (touchTimeout) clearTimeout(touchTimeout)
      if (tapTimeout) clearTimeout(tapTimeout)
      if (swipeTimeout) clearTimeout(swipeTimeout)
      if (longTapTimeout) clearTimeout(longTapTimeout)
      touchTimeout = tapTimeout = swipeTimeout = longTapTimeout = null
      touch = {}
    }
    function isPrimaryTouch(event) {
      return (event.pointerType == ‘touch‘ ||
        event.pointerType == event.MSPOINTER_TYPE_TOUCH) && event.isPrimary
    }
    function isPointerEventType(e, type) {
      return (e.type == ‘pointer‘ + type ||
        e.type.toLowerCase() == ‘mspointer‘ + type)
    }
  $(document).ready(function() {
    var now, delta, deltaX = 0,
      deltaY = 0,
      firstTouch, _isPointerType
    if (‘MSGesture‘ in window) {
      gesture = new MSGesture()
      gesture.target = document.body
    }
    $(document)
      .bind(‘MSGestureEnd‘, function(e) {
        var swipeDirectionFromVelocity =
          e.velocityX > 1 ? ‘Right‘ : e.velocityX < -1 ? ‘Left‘ : e.velocityY > 1 ? ‘Down‘ : e.velocityY < -1 ? ‘Up‘ : null;
        if (swipeDirectionFromVelocity) {
          touch.el.trigger(‘swipe‘)
          touch.el.trigger(‘swipe‘ + swipeDirectionFromVelocity)
        }
      })
      .on(‘touchstart MSPointerDown pointerdown‘, function(e) {
        if ((_isPointerType = isPointerEventType(e, ‘down‘)) && !isPrimaryTouch(e)) return
        firstTouch = _isPointerType ? e : e.touches[0]
        if (e.touches && e.touches.length === 1 && touch.x2) {
          // Clear out touch movement data if we have it sticking around
          // This can occur if touchcancel doesn‘t fire due to preventDefault, etc.
          touch.x2 = undefined
          touch.y2 = undefined
        }
        now = Date.now()
        delta = now - (touch.last || now)
        touch.el = $(‘tagName‘ in firstTouch.target ? firstTouch.target : firstTouch.target.parentNode)
        touchTimeout && clearTimeout(touchTimeout)
        touch.x1 = firstTouch.pageX
        touch.y1 = firstTouch.pageY
        if (delta > 0 && delta <= 250) touch.isDoubleTap = true
        touch.last = now
        longTapTimeout = setTimeout(longTap, longTapDelay)
        // adds the current touch contact for IE gesture recognition
        if (gesture && _isPointerType) gesture.addPointer(e.pointerId);
      })
      .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)
      })
      .on(‘touchend MSPointerUp pointerup‘, function(e) {
        if ((_isPointerType = isPointerEventType(e, ‘up‘)) && !isPrimaryTouch(e)) return
        cancelLongTap()
        // swipe
        if ((touch.x2 && Math.abs(touch.x1 - touch.x2) > 30) ||
          (touch.y2 && Math.abs(touch.y1 - touch.y2) > 30))
          swipeTimeout = setTimeout(function() {
            touch.el.trigger(‘swipe‘)
            touch.el.trigger(‘swipe‘ + (swipeDirection(touch.x1, touch.x2, touch.y1, touch.y2)))
            touch = {}
          }, 0)
        // normal tap
        else if (‘last‘ in touch)
        // don‘t fire tap when delta position changed by more than 30 pixels,
        // for instance when moving to a point and back to origin
          if (deltaX < 30 && deltaY < 30) {
            // delay by one tick so we can cancel the ‘tap‘ event if ‘scroll‘ fires
            // (‘tap‘ fires before ‘scroll‘)
            tapTimeout = setTimeout(function() {
              // trigger universal ‘tap‘ with the option to cancelTouch()
    // (cancelTouch cancels processing of single vs double taps for faster ‘tap‘ response)
var event = $.Event(‘tap‘)
  event.cancelTouch = cancelAll
  touch.el.trigger(event)
// trigger double tap immediately
if (touch.isDoubleTap) {
if (touch.el) touch.el.trigger(‘doubleTap‘)
  touch = {}
  }
// trigger single tap after 250ms of inactivity
else {
  touchTimeout = setTimeout(function() {
  touchTimeout = null
if (touch.el) touch.el.trigger(‘singleTap‘)
  touch = {}
  }, 250)
  }
  }, 0)
  } else {
  touch = {}
  }
  deltaX = deltaY = 0
  })
// when the browser window loses focus,
// for example when a modal dialog is shown,
// cancel all ongoing events
  .on(‘touchcancel MSPointerCancel pointercancel‘, cancelAll)
// scrolling the window indicates intention of the user
// to scroll, not tap or swipe, so cancel all ongoing events
  $(window).on(‘scroll‘, cancelAll)
  })
  ;
  [‘swipe‘, ‘swipeLeft‘, ‘swipeRight‘, ‘swipeUp‘, ‘swipeDown‘,
‘doubleTap‘, ‘tap‘, ‘singleTap‘, ‘longTap‘
  ].forEach(function(eventName) {
  $.fn[eventName] = function(callback) {
return this.on(eventName, callback)
  }
  })
})(Zepto)

分析:

var now, delta, touch = {};
$(document)
    .on(‘touchstart‘, startListener)
    .on(‘touchmove‘, moveListener)
    .on(‘touchend‘, endListener);

1、是单击还是双击

function startListener(e){
  now = Date.now();
  delta = now - (touch.last || now);
  // 手指连续轻触两次,时间间隔大于0,小于等于.25s,则为双击,反之单击
  if ( delta > 0 && delta <= 250 ) {
    touch.isDoubleTap = true;
  }
  touch.last = now;
}

2、处理手指长按

var longTapTimeout, longTapDelay = 750;
function longTap() {
  longTapTimeout = null
  if (touch.last) {
    touch.el.trigger(‘longTap‘)
    touch = {}
  }
}
function cancelLongTap() {
  if (longTapTimeout) clearTimeout(longTapTimeout)
  longTapTimeout = null
}
function startListener(e){
  // 默认就是长按,如果手指未移动和离开,超过.75s就触发longTap
  longTapTimeout = setTimeout(longTap, longTapDelay)
}
function moveListener(e){
  // 如果手指轻触屏幕后未超过.75s,则取消手指长按监听
  longTapTimeout = setTimeout(longTap, longTapDelay)
}
function endListener(e){
  // 如果手指轻触屏幕后未超过.75s,则取消手指长按监听
  longTapTimeout = setTimeout(longTap, longTapDelay)
}

3、是滑动(swipe)还是轻触(tap)

// 如果手指移动屏幕超过30像素,则触发相应的滑动事件,swipeLeft, swipeRight, swipeUp, swipeDown
function endListener(e){
  // swipe
  if ((touch.x2 && Math.abs(touch.x1 - touch.x2) > 30) ||
    (touch.y2 && Math.abs(touch.y1 - touch.y2) > 30)) {
    swipeTimeout = setTimeout(function() {
      touch.el.trigger(‘swipe‘)
      touch.el.trigger(‘swipe‘ + (swipeDirection(touch.x1, touch.x2, touch.y1, touch.y2)))
      touch = {}
    }, 0);
  }
  else {
    // handle tap
    // 关于处理tap事件,请看第四点
  }
}

4、轻触 tap, singleTap, doubleTap

4.1、何时触发 tap ?

条件1:手指移动不超过30像素

if ((touch.x2 && Math.abs(touch.x1 - touch.x2) > 30) ||
   (touch.y2 && Math.abs(touch.y1 - touch.y2) > 30)) {
    // swipe
}
else {
    // tap
}

条件2:依据条件1,基本上可以触发tap了,但是还考虑了另一种情况,手指滑动屏幕后又滑动到起始点,那么:

!Math.abs(touch.x1 - touch.x2) > 30) === !Math.abs(touch.y1 - touch.y2) > 30) === true;

为了不触发tap事件,这里又加了条件限制,理解这点很重要

if (deltaX < 30 && deltaY < 30) {
    // handle tap
}

注意:

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

请看 moveListener 中的代码:

function moveListener(e){
  // ...
  touch.x2 = firstTouch.pageX
  touch.y2 = firstTouch.pageY
  deltaX += Math.abs(touch.x1 - touch.x2)
  deltaY += Math.abs(touch.y1 - touch.y2)
}

例: deltaX的计算,你懂得...

if ( Math.abs(touch.x1 - touch.x2) === 10 ) {
    deltaX = 10 + 9 + 8 + ... + 0;
}

4.2、处理tap,doubleTap,singleTap三者之间的关系

function cancelAll() {
  if (touchTimeout) clearTimeout(touchTimeout)
  if (tapTimeout) clearTimeout(tapTimeout)
  if (swipeTimeout) clearTimeout(swipeTimeout)
  if (longTapTimeout) clearTimeout(longTapTimeout)
  touchTimeout = tapTimeout = swipeTimeout = longTapTimeout = null
  // 这句很重要,将影响所有需要对touch对象属性判断的语句
  touch = {}
}
function endListener(e){
  tapTimeout = setTimeout(function() {
    var event = $.Event(‘tap‘)
    // tap事件对象event可以取消后续绑定的doubleTap, singleTap处理器
    event.cancelTouch = cancelAll
    touch.el.trigger(event)
    // 立即触发双击事件
    if (touch.isDoubleTap) {
      if (touch.el) touch.el.trigger(‘doubleTap‘)
      touch = {}
    }
    // 定时.25s后再触发单击事件
    else {
      touchTimeout = setTimeout(function() {
        touchTimeout = null
        if (touch.el) touch.el.trigger(‘singleTap‘)
        touch = {}
      }, 250)
    }
  }, 0)
}

例如:如何在tap事件处理器中取消 doubleTap或singleTap事件监听器

$(‘body‘)
  .on(‘tap‘, function(e){
    console.log(‘tap‘);
    // 执行下面语句将影响是否触发绑定的 doubleTap或singleTap 处理器
    e.cancelTouch();
  })
  .on(‘doubleTap‘, function(e){
    console.log(‘doubleTap‘);
  })
  .on(‘singleTap‘, function(e){
    console.log(‘singleTap‘);
  });
// ‘tap‘

5、兼容指针事件系统

// 判断是否是指针事件类型
function isPointerEventType(e, type) {
  return (e.type == ‘pointer‘ + type ||
    e.type.toLowerCase() == ‘mspointer‘ + type)
}
// 判断是否是第一个touch或pointer事件对象
function isPrimaryTouch(event) {
  return (event.pointerType == ‘touch‘ ||
    event.pointerType == event.MSPOINTER_TYPE_TOUCH) && event.isPrimary
}
// 如果是指针类型是 pointerdown 或 pointermove 或 pointerup 且 不是第一个touch 或 pointer 事件对象,返回空,
// 直接屏蔽了第二个、第三...的触摸处理
if ((_isPointerType = isPointerEventType(e, ‘down‘)) && !isPrimaryTouch(e)) return
if ((_isPointerType = isPointerEventType(e, ‘move‘)) && !isPrimaryTouch(e)) return
if ((_isPointerType = isPointerEventType(e, ‘up‘)) && !isPrimaryTouch(e)) return

6、 快捷注册事件

[‘swipe‘, ‘swipeLeft‘, ‘swipeRight‘, ‘swipeUp‘, ‘swipeDown‘,
    ‘doubleTap‘, ‘tap‘, ‘singleTap‘, ‘longTap‘
].forEach(function(eventName) {
    $.fn[eventName] = function(callback) {
        return this.on(eventName, callback)
    }
});

你可以用 on 方法注册事件,也可以快捷注册,下面两种方式都是一样的,类似jQuery用法

$(‘body‘).on(‘tap‘, function(){ console.log(‘body trigger tap event‘); });
$(‘body‘).tap(function(){ console.log(‘body trigger tap event‘); });

篇尾总结:

源码中大部分代码都已经解析完毕,如有不合理的地方,还请赐教,touch模块的中所有的事件都支持冒泡,但是不会对原生的touch事件产生影响,另外所有元素绑定的事件都是在文档document元素的touchend处理中触发,

如果页面中有一元素在原生touch事件中阻止了冒泡,那么页面中所有元素注册的 zepto touch事件都不会被触发,慎重慎重...,

时间: 2024-10-14 05:18:05

Zepto.js touch模块深入分析 解决手机点击事件的相关文章

Zepto.js touch模块深入分析

// Zepto.js // (c) 2010-2015 Thomas Fuchs // Zepto.js may be freely distributed under the MIT license. ; (function($) { var touch = {}, touchTimeout, tapTimeout, swipeTimeout, longTapTimeout, longTapDelay = 750, gesture function swipeDirection(x1, x2

zepto的touch模块解决click延迟300ms问题以及点透问题的详解

大家都知道移动端的click事件会延迟300ms触发,这时大家可以使用zepto的touch模块,里面定义了一个tap事件,通过绑定tap事件,可以实现点击立即触发的功能. 那么,它的tap事件是怎么实现的呢?这是我们要解决的第一个问题. 第二个问题,大家都知道zepto的tap事件会有点透的问题,那么,点透如何出现,点透为什么会出现,点透问题如何解决等,这是我们要解决的第二个问题. 我们先来看tap事件是如何实现的? 查看touch.js代码,在最后的代码中有以下代码: ;['swipe',

zepto.js touch库

最近在做一个手机版的项目,而做手机网页,那么就会考虑到用轻量级库,用jquery的话,会比较庞大,而我们就选用 zepto.js 来做开发,可是在开发的时候要用到手势事件(比如左右滑动,上下滑动),于是就在网上查了一下 zepto.js 的官网,发现有 touch 事件来模拟手势事件,这个开发就会带来便利,而不用去写JS底层代码:在网上搜罗了一下 zepto.js touch 库,找到了不多 touch.js 的相关信息,真的感觉很少(不知道是不是zepto.js不成熟的表现),终于在网上搜罗到

Zepto.js touch,tap增加 touch模块深入分析

1. touch库实现了什么和引入背景 click事件在移动端上会有 300ms 的延迟,同时因为需要 长按 , 双触击 等富交互,所以我们通常都会引入类似 zepto 这样的库.zepto 中touch库实现了 'swipe', 'swipeLeft', 'swipeRight', 'swipeUp', 'swipeDown', 'doubleTap', 'tap', 'singleTap', 'longTap' 这样一些功能. 2.touch库实现'swipe', 'swipeLeft',

移动端的silder,未封装,基于zepto的touch模块,有参照修改过touch的bug

<!--html模块--> <header class="appoin-head"> <ul> <li class="aa"> <a href="#"> <img src="img/banner1.png" alt=""> </a> </li> <li> <a href="#"

zepto.js ,touch.js左右滑动

<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <style> html, body { margin: 0; height

fastclick.js --- 解决移动端点击事件300ms延时

Fast Click 是一个简单.易用的库,专为消除移动端浏览器从物理触摸到触发点击事件之间的300ms延时. 为什么会存在延迟呢? 从你触摸按钮到触发点击事件,移动端浏览器会等待接近300ms,原因是浏览器会等待以确定你是否执行双击事件 兼容性 Mobile Safari on iOS 3 and upwards Chrome on iOS 5 and upwards Chrome on Android (ICS) Opera Mobile 11.5 and upwards Android B

WebView 实现JS效果和a标签的点击事件

目前很多android app都可以显示web页面的界面,嵌入式开发,这个界面一般都是WebView这个控件加载出来的,学习该控件可以为你的app开发提升扩展性. 先说下WebView的一些优点: 可以直接显示和渲染web页面,直接显示网页 webview可以直接用html文件(网络上或本地assets中)作布局 和JavaScript交互调用 网页标签的点击事件 效果:(网页顶部是JS效果滚动,4个模块可以实现点击事件,可看到信息提示) activity_main.xml <RelativeL

解决label点击事件触发两次问题

问题描述: 通常,为了用户体验,我们点击单选框或者复选框后面文字,即可选中当前项.代码如下: <label> <input type="radio" name="sex" />男 </label> <label> <input type="radio" name="sex" />女 </label> 但是,此时,如果label标签有点击事件,则会触发两次.