美文网首页
touch触摸事件

touch触摸事件

作者: 李代宁 | 来源:发表于2016-04-27 22:15 被阅读99次

         原声移动端触屏事件touch分为3个事件:  touchstart 触摸开始 touchmove 触摸移动  touchup 触摸结束.

        对于触摸事件不能像鼠标点击等事件一样直接写 document.ontouchstart = function () {} , 添加触摸事件需要使用事件监听:                                                                                                       document.addEventListener("touchstart",function () {})

        document.addEventListener("touchmove",function () {})

        document.addEventListener("touchup",function () {})

    相关文章

      网友评论

          本文标题:touch触摸事件

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