JQuery獲取touchstart,touchmove,touchend座標

$('#id').on('touchstart',function(e) {
    var x= e.originalEvent.targetTouches[0].pageX;
    
});

JQuery如上。html

 

document.getElementById("id").addEventListener("touchstart",function(e){
    var _x=e.touches[0].pageX;
    var _y=e.touches[0].pageY;
    console.log("start",_x)
})

原生如上。spa

 

通常咱們取第一個手指的座標,若是有其餘要求可能 須要判斷手指數量code

 

if (e.targetTouches.length == 1){
  //...
}

 

經常使用的:htm

e.preventDefault();

 

參考來源:http://www.cnblogs.com/luoeeyang/p/4519408.htmlblog

相關文章
相關標籤/搜索