touchmove和touchend的使用

Posted gaiyb

tags:

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

touchstart:当手指触摸屏幕时触发;即使已经有一个手指放在了屏幕上也会触发。
touchmove:当手指在屏幕上滑动时连续的触发。在这个事件发生期间,调用preventDefault()可阻止滚动。
touchend:当手指从屏幕上移开时触发。
touchcancel:当系统停止跟踪触摸时触发。关于此事件的确切触发事件,文档中没有明确说明。

jQuery在使用这几个事件的时候需要使用事件绑定,即:on或bind

如:有一个按钮button

js中代码为:

$("button").on(‘touchstart‘,function(e){
        e.preventDefault();
        //
        });
    }).on(‘touchend‘,function(){
        //
    })

 

以上是关于touchmove和touchend的使用的主要内容,如果未能解决你的问题,请参考以下文章

你如何在 python 中处理 graphql 查询和片段?

使用 Python 代码片段编写 LaTeX 文档

获取touchstart,touchmove,touchend 坐标

python 代码片段和解决方案

在 Python 多处理进程中运行较慢的 OpenCV 代码片段

Python 向 Postman 请求代码片段