移動端touch事件獲取clientX, clientY

目有個交互須要實現手指滑動的交互,pc端使用mousedown,mousemove,mouseup監聽實現。

但在ios設備上mousemove是很差監聽的,同類的方法是touchstart,touchmove,touchend。jquery

如何獲取手指滑動時的座標位置呢?ios

直接使用event.clientX是不起做用的,要使用event.changedTouches[0].clientX纔好,spa

若是是jquery的event對象,使用event.originalEvent.changedTouches[0].clientX。對象

相關文章
相關標籤/搜索