我有一个<div>
标记,当用户对其进行滑动时,它会记录swipe
。在jQuery Mobile中有三个滑动,即swipe
,swipeleft
和swiperight
,但我只想使用swipe
。我想知道的是,当用户在<div>
代码上滑动,然后根据用户的滑动方向记录swipeleft
或swiperight
。可能吗?如果是,那么如何?
$('.image').on('swipe', function (e) {
console.log('swipe);
});
答案 0 :(得分:2)
要记录向左滑动,请使用
$('.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" );
}
}