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

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

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

标签:style   color   io   art   re   c   

     $(‘#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的获取位置

标签:style   color   io   art   re   c   

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

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