首页 > 代码库 > touchstart,touchmove,touchend事件 写法
touchstart,touchmove,touchend事件 写法
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事件 写法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。