页面中使用了zepto的swipeLeft和swipeRight方法,上下滑动的时候也会误触发左右滑动事件

发布于 2022-09-04 12:27:17 字数 648 浏览 22 评论 0

图片描述

要实现的效果:
右滑动切换到评价页面
左滑动切换简介页面

// 切换
    $(document).swipeLeft(function(){
        $('.tab-title li').removeClass('on').eq(1).addClass('on');
        $('.tab-body .tab-con').removeClass('on').eq(1).addClass('on');
    })
    $(document).swipeRight(function(){
        $('.tab-title li').removeClass('on').eq(0).addClass('on');
        $('.tab-body .tab-con').removeClass('on').eq(0).addClass('on');
    })

使用了swipeLeft()和swipeRight()的两个方法,但是在实际操作中发现上下滑动的时候会偶尔触发左右滑动事件,请问要如何修改呢?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

万水千山粽是情ミ 2022-09-11 12:27:17

刚搜索找到的方法,通过判断滑动距离来执行事件,代码如下:

// 获取滑动距离
    var startPosition, endPosition, moveLength;  
        $(document).bind('touchstart', function(e){  
        var touch = e.touches[0];  
        startPosition = {  
            x: touch.pageX 
        }
    }) .bind('touchmove', function(e){  
        var touch = e.touches[0];  
        endPosition = {  
            x: touch.pageX
        };  
        moveLength = endPosition.x - startPosition.x;
    });
    // 切换
    $(document).swipeLeft(function(){
        if(Math.abs(moveLength)>80){
            $('.tab-title li').removeClass('on').eq(1).addClass('on');
            $('.tab-body .tab-con').removeClass('on').eq(1).addClass('on');
        }
    })
    $(document).swipeRight(function(){
        if(Math.abs(moveLength)>80){
            $('.tab-title li').removeClass('on').eq(0).addClass('on');
            $('.tab-body .tab-con').removeClass('on').eq(0).addClass('on');
        }
    })
心意如水 2022-09-11 12:27:17

楼主大大好人,感谢!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文