首页 > Web开发 > 详细

jQuery的touchstart,touchmove,touchend的获取位置

时间:2014-07-23 12:40:06      阅读:534      评论:0      收藏:0      [点我收藏+]

     $(‘#webchat_scroller‘).on(‘touchstart‘,function(e) {

      var touch = e.originalEvent.targetTouches[0];

      var y = touch.pageY;

      });

 

 

      $(‘#webchat_scroller‘).on(‘touchmove‘,function(e) {

      var touch = e.originalEvent.targetTouches[0];

      var y = touch.pageY;

      });

     $(‘#webchat_scroller‘).on(‘touchend‘,function(e) {

      var touch = e.originalEvent.changedTouches[0];

      var y = touch.pageY;

   });

jQuery的touchstart,touchmove,touchend的获取位置,布布扣,bubuko.com

jQuery的touchstart,touchmove,touchend的获取位置

原文:http://www.cnblogs.com/czzblog/p/3862459.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!