js移动端页面判断左右滑动事件

实现原理:通过监听touchstart事件获取,初始的x轴、y轴坐标,在通过监听touchmove事件,获取结束时候的x轴、y轴坐标,他通过初始值与结束值比较,判断是左滑还是右滑。
代码:

var windowHeight = $(window).height(),
      $body = $("body");
      $body.css("height", windowHeight); //重要代码
      $("body").on("touchstart", function(e) {
        e.preventDefault();
        startX = e.originalEvent.changedTouches[0].pageX,
        startY = e.originalEvent.changedTouches[0].pageY;
      });
      $("body").on("touchmove", function(e) {
        e.preventDefault();
        moveEndX = e.originalEvent.changedTouches[0].pageX,
        moveEndY = e.originalEvent.changedTouches[0].pageY,
        X = moveEndX - startX,
        Y = moveEndY - startY;

        if ( Math.abs(X) > Math.abs(Y) && X > 0 ) {
          alert("left 2 right");
        }
        else if ( Math.abs(X) > Math.abs(Y) && X < 0 ) {
          alert("right 2 left");
        }
        else if ( Math.abs(Y) > Math.abs(X) && Y > 0) {
          alert("top 2 bottom");
        }
        else if ( Math.abs(Y) > Math.abs(X) && Y < 0 ) {
          alert("bottom 2 top");
        }
        else{
          alert("just touch");
        }
      });

直接使用时,控制台活报错
在这里插入图片描述
这个时候在样式文件里面加入:

    * {
        touch-action: pan-y;
    }

就解决了

原文档地址为:https://www.cnblogs.com/lijuntao/p/6479972.html

你可能感兴趣的:(js)