当前位置: 代码迷 >> Web前端 >> 挪动端touch事件获取clientX, clientY
  详细解决方案

挪动端touch事件获取clientX, clientY

热度:438   发布时间:2012-09-07 10:38:15.0
移动端touch事件获取clientX, clientY
目有个交互需要实现手指滑动的交互,pc端使用mousedown,mousemove,mouseup监听实现。

但在ios设备上mousemove是不好监听的,同类的方法是touchstart,touchmove,touchend。

如何获取手指滑动时的坐标位置呢?

直接使用event.clientX是不起作用的,要使用event.changedTouches[0].clientX才好,

如果是jquery的event对象,使用event.originalEvent.changedTouches[0].clientX。