我有一个< div>标签,当用户在其上滑动时,它会记录滑动.在jQuery Mobile中有三种滑动,即滑动,滑动和swiperight,但我只想使用滑动.我想知道的是当用户滑过< div>时然后根据用户的滑动方向记录swipeleft或swiperight.可能吗?如果是,那怎么样?
$('.image').on('swipe', function (e) {
console.log('swipe);
});
最佳答案 要记录向左滑动使用
$('.image').on('swipeleft', function (e) {
console.log('swipeleft');
});
为了正确
$('.image').on('swiperight', function (e) {
console.log('swiperight');
});
将它放在代码的函数$(document).on(‘pageinit’,function(){}中.
这些事件可以扩展,这是这些事件的默认值
$.event.special.swipe.handleSwipe:
function( start, stop ) {
if ( stop.time - start.time < $.event.special.swipe.durationThreshold &&
Math.abs( start.coords[ 0 ] - stop.coords[ 0 ] ) > $.event.special.swipe.horizontalDistanceThreshold &&
Math.abs( start.coords[ 1 ] - stop.coords[ 1 ] ) < $.event.special.swipe.verticalDistanceThreshold ) {
start.origin.trigger( "swipe" )
.trigger( start.coords[0] > stop.coords[ 0 ] ? "swipeleft" : "swiperight" );
}
}