jQuery -- touch事件之滑动判断(左右上下方向)
Posted 寂寞之砂
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery -- touch事件之滑动判断(左右上下方向)相关的知识,希望对你有一定的参考价值。
$("body").on("touchstart", function(e) { // 判断默认行为是否可以被禁用 if (e.cancelable) { // 判断默认行为是否已经被禁用 if (!e.defaultPrevented) { e.preventDefault(); } } startX = e.originalEvent.changedTouches[0].pageX, startY = e.originalEvent.changedTouches[0].pageY; }); $("body").on("touchend", function(e) { // 判断默认行为是否可以被禁用 if (e.cancelable) { // 判断默认行为是否已经被禁用 if (!e.defaultPrevented) { e.preventDefault(); } } moveEndX = e.originalEvent.changedTouches[0].pageX, moveEndY = e.originalEvent.changedTouches[0].pageY, X = moveEndX - startX, Y = moveEndY - startY; //左滑 if ( X > 0 ) { alert(‘左滑‘); } //右滑 else if ( X < 0 ) { alert(‘右滑‘); } //下滑 else if ( Y > 0) { alert(‘下滑‘); } //上滑 else if ( Y < 0 ) { alert(‘上滑‘); } //单击 else{ alert(‘单击‘); } });
转载http://blog.csdn.net/sinat_19327991/article/details/73823767
以上是关于jQuery -- touch事件之滑动判断(左右上下方向)的主要内容,如果未能解决你的问题,请参考以下文章
移动端touch事件---利用bootstrap实现轮播图手指左右滑动事件
iOS UICollectionView左右滚动和上下滑动处理