touch 方向判断方法

Posted 小酱油

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了touch 方向判断方法相关的知识,希望对你有一定的参考价值。

touch :touchstart、touchend、touchmove

$("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("left2 right");
        } else if ( Math.abs(X) > Math.abs(Y) && X < 0 ) {
            alert("right2 left");
        }else if ( Math.abs(Y) > Math.abs(X) && Y > 0) {
            alert("top2 bottom");
        }else if ( Math.abs(Y) > Math.abs(X) && Y < 0 ) {
            alert("bottom2 top");
        }else{
            alert("justtouch");
        }
});

以上是关于touch 方向判断方法的主要内容,如果未能解决你的问题,请参考以下文章

H5案例分享:移动端touch事件判断滑屏手势的方向

PC和移动端判断鼠标(手指)滑动方向(touch方向)

jQuery -- touch事件之滑动判断(左右上下方向)

手机端触摸的方向判断

touch监听判断手指的上滑,下滑,左滑,右滑,事件监听

常用代码集合