uniapp 上下左右手势滑动时的事件

Posted 摸凹猫.

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uniapp 上下左右手势滑动时的事件相关的知识,希望对你有一定的参考价值。

<template>  
    <view @touchstart="touchStart" @touchend="touchEnd" style="height:2000px;">  
        测试  
    </view>  
</template>  
<script>  
    export default {  
        data() {  
            return {  
                touchStartX: 0,  // 触屏起始点x  
                touchStartY: 0,  // 触屏起始点y  
            };  
        },  
        methods: {  
            /**  
            * 触摸开始  
            **/  
            touchStart(e) {  
                console.log("触摸开始")  
                this.touchStartX = e.touches[0].clientX;  
                this.touchStartY = e.touches[0].clientY;  
            },  

            /**  
            * 触摸结束  
            **/  
            touchEnd(e) {  
                console.log("触摸结束")  
                let deltaX = e.changedTouches[0].clientX - this.touchStartX;  
                let deltaY = e.changedTouches[0].clientY - this.touchStartY;  
                if (Math.abs(deltaX) > 50 && Math.abs(deltaX) > Math.abs(deltaY)) {  
                    if (deltaX >= 0) {  
                        console.log("左滑")  
                    } else {  
                        console.log("右滑")  
                    }  
                } else if(Math.abs(deltaY) > 50&& Math.abs(deltaX) < Math.abs(deltaY)) {  
                    if (deltaY < 0) {  
                        console.log("上滑")  
                    } else {  
                        console.log("下滑")  
                    }  
                } else {  
                    console.log("可能是误触!")  
                }  
            },            
        }  
    };  
</script>

转于:https://ask.dcloud.net.cn/article/38074

以上是关于uniapp 上下左右手势滑动时的事件的主要内容,如果未能解决你的问题,请参考以下文章

js判断移动端手势 上下左右滑动事件

android fragment怎么监听上下滑动

一uniapp项目(封装异步请求moment.js时间处理封装手势滑动组件下载图片到本地)

uni-app 手势事件解析,uni点击方法

ios 滑动手势 怎么判断左右滑动

事件处理机制之Gestures(手势)