我在小提琴中使用 jquery.touchSwipe.js。我从这里下载并在我的 dropbox .run 中插入了 jquery.touchSwipe.js,但它不起作用。我想捕捉上下滑动事件以及滚动。这是我的小提琴。
$("#test").swipe({
swipeUp: function (event, direction, distance, duration) {
console.log("You swiped " + direction)
},
swipeDown: function (event, direction, distance, duration) {
console.log("You swiped " + direction)
},
click: function (event, target) {},
threshold: 100,
allowPageScroll: "vertical"
});