美文网首页
ios页面双击上滑

ios页面双击上滑

作者: 伊凡_2c02 | 来源:发表于2019-11-26 09:49 被阅读0次

var agent = navigator.userAgent.toLowerCase(); //检测是否是ios

  var iLastTouch = null;                                //缓存上一次tap的时间

  if (agent.indexOf('iphone') >= 0 || agent.indexOf('ipad') >= 0) {

    document.body.addEventListener('touchend', function (event) {

      var iNow = new Date()

        .getTime();

      iLastTouch = iLastTouch || iNow + 1 /** 第一次时将iLastTouch设为当前时间+1 */;

      var delta = iNow - iLastTouch;

      if (delta < 500 && delta > 0) {

        event.preventDefault();

        return false;

      }

      iLastTouch = iNow;

    }, false);

}

相关文章

网友评论

      本文标题:ios页面双击上滑

      本文链接:https://www.haomeiwen.com/subject/waxewctx.html