[前端] touch事件方向判断

// 触摸开始
$("body").on("touchstart", function(e) { 
    e.preventDefault(); 
    startX = e.originalEvent.changedTouches[0].pageX,
    startY = e.originalEvent.changedTouches[0].pageY; 
}); 

// 触摸移动
$("body").on("touchmove", function(e) {
e.preventDefault();
});

// 触摸结束
$("body").on("touchend", function(e) { 
    e.preventDefault(); 
    moveEndX = e.originalEvent.changedTouches[0].pageX, 
    moveEndY = e.originalEvent.changedTouches[0].pageY, 
    X = moveEndX - startX, 
    Y = moveEndY - startY; 

    if ( Math.abs(X) > Math.abs(Y) && X > 0 ) { 
        alert("left 2 right"); 
    } 
    else if ( Math.abs(X) > Math.abs(Y) && X < 0 ) { 
        alert("right 2 left"); 
    } 
    else if ( Math.abs(Y) > Math.abs(X) && Y > 0) { 
        alert("top 2 bottom"); 
    } 
    else if ( Math.abs(Y) > Math.abs(X) && Y < 0 ) { 
        alert("bottom 2 top"); 
    } 
    else{ 
        alert("just touch"); 
    } 
});

写到最后,推广下一个不错的分享平台:http://www.techshare100.com/,欢迎大家加入

你可能感兴趣的:([前端] touch事件方向判断)