需要鉴定左滑右滑事件的区域
html文件
<div class="banner_swiper">
***********
**********
</div>
js判断左滑/右滑的事件
$(".banner_swiper").on("touchstart", function(e) {
startX = e.originalEvent.changedTouches[0].pageX;
});
$(".banner_swiper").on("touchend", function(e) {
endX = e.originalEvent.changedTouches[0].pageX;
chaX = endX - startX;
if(chaX > 0) {
console.log('左滑');
}
else if(chaX < 0) {
console.log('右滑');
}
});