我正在使用 Touchswipe 触发基于向右滑动和向左滑动的事件。经过大量测试,我发现 touchswipe 不适用于 android 股票浏览器,因为 touchswipe 没有在股票浏览器上触发滑动事件。有什么解决方法吗?
触发代码:
$(function() {
//Enable swiping...
$("#content").swipe( {
//Generic swipe handler for all directions
swipe:function(event, direction, distance, duration, fingerCount) {
if(direction == "left"){
}else if(direction == "right"){
}else if(direction == "down"){
// event.preventDefault()
}
},
threshold:0
});
});