码迷,mamicode.com
首页 > 其他好文 > 详细

touchstart,touchmove,touchend事件 写法

时间:2016-09-19 17:42:47      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:

jQuery写法:
 1 $(‘#id‘).on(‘touchstart‘,function(e) {
 2     var _touch = e.originalEvent.targetTouches[0]; 
 3     var _x= _touch.pageX;
 4 });
 5 
 6 $(‘#id‘).on(‘touchmove‘,function(e) {
 7     var _touch = e.originalEvent.targetTouches[0]; 
 8     var _x= _touch.pageX;
 9 });
10 
11 $(‘#id‘).on(‘touchend‘,function(e) {
12     var _touch = e.originalEvent.changedTouches[0]; 
13     var _x= _touch.pageX;
14 }

 

原生写法:
 1 document.getElementById("id").addEventListener("touchstart",function(e)
 2 {
 3     var _x=e.touches[0].pageX;
 4     var _y=e.touches[0].pageY;
 5     console.log("start",_x)
 6 })
 7 document.getElementById("id").addEventListener("touchmove",function(e)
 8 {
 9     var _x=e.touches[0].pageX;
10     var _y=e.touches[0].pageY;
11     console.log("move",_x)
12 })
13 document.getElementById("id").addEventListener("touchend",function(e)
14 {
15     var _x=e.changedTouches[0].pageX;
16     var _y=e.changedTouches[0].pageY;
17     console.log("end",_x)
18 })

 

touchstart,touchmove,touchend事件 写法

标签:

原文地址:http://www.cnblogs.com/front-end-1149980941/p/5885593.html

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