当前位置:   article > 正文

jQuery判断移动端屏幕的滑动方向_jq 判断竖屏滑动

jq 判断竖屏滑动

jQuery判断移动端屏幕的滑动方向

    $('body').on('touchstart', function(e) {
        var touch = e.originalEvent,
            startX = touch.changedTouches[0].pageX;
        startY = touch.changedTouches[0].pageY;
        $('body').on('touchmove', function(e) {
            touch = e.originalEvent.touches[0] ||
                e.originalEvent.changedTouches[0];
            if (touch.pageX - startX > 10) {
                console.log("右划");
                showPrevious();
                $('body').off('touchmove');
            } else if (touch.pageX - startX < -10) {
                console.log("左划");
                showNext();
                $('body').off('touchmove');
            };
            if (touch.pageY - startY > 10) {
                console.log("下划");
                $('body').off('touchmove');
            } else if (touch.pageY - startY < -10) {
                console.log("上划");
                $('body').off('touchmove');
            };
        });

        // Return false to prevent image
        // highlighting on Android
        return false;

    }).on('touchend', function() {
        $('body').off('touchmove');
    });
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/163826
推荐阅读
相关标签
  

闽ICP备14008679号