美文网首页
移动设备滑动事件

移动设备滑动事件

作者: IBM_LELE | 来源:发表于2018-06-22 16:25 被阅读0次

    移动设备上用到核心 touch事件,处理 touch事件能跟踪到屏幕的滑动。

    touchstart:手指放到屏幕上触发

    touchmove:手指在屏幕上滑动触发

    touchend:手指离开屏幕触发

    监听滑块停止离开时触发

    document.getElementById('field-range').addEventListener('touchend', function() {

         //具体业务

    });

    注意:监听只能注册一次。

    if(_this.isListener) {

         document.getElementById('field-range').addEventListener('touchend', function() {

              //具体业务

       });

        _this.isListener = false;

    相关文章

      网友评论

          本文标题:移动设备滑动事件

          本文链接:https://www.haomeiwen.com/subject/oqbkyftx.html