码迷,mamicode.com
首页 > 移动开发 > 详细

移动端事件

时间:2018-05-31 10:47:49      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:span   console   element   end   移动   移动端   fun   IV   cti   

移动端三大事件:

手指按下:

  ontouchstart

手指移动:

  ontouchmove

手指抬起:

  ontouchend

<div id="div1"></div>
    <script>
        var div1 = document.getElementById("div1");
        div1.addEventListener(touchstart,start);
        div1.addEventListener(touchmove,move);
        div1.addEventListener(touchend,end);
        function start(){
            console.log(按下);
        }
        function move(){
            console.log(移动);
        }
        function end(){
            console.log(抬起);
        }
    </script>

PC上的事件比移动端的事件略慢,大概300ms。

 

移动端事件

标签:span   console   element   end   移动   移动端   fun   IV   cti   

原文地址:https://www.cnblogs.com/woshimama/p/9114587.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!