4
您能否告訴我如何在jQuery + jQuery移動中向上滑動並向下滑動。如何向上滑動並向下滑動jQuery?
我已經使用這個插件: How to swipe top down JQuery mobile
記過:當我把它的滾動調用上下滑動功能的內容。 您能否給我最好的解決方案,以便我能夠滾動我的內容並使用jQuery或jQuery手機上下滑動。
您能否告訴我如何在jQuery + jQuery移動中向上滑動並向下滑動。如何向上滑動並向下滑動jQuery?
我已經使用這個插件: How to swipe top down JQuery mobile
記過:當我把它的滾動調用上下滑動功能的內容。 您能否給我最好的解決方案,以便我能夠滾動我的內容並使用jQuery或jQuery手機上下滑動。
下載從https://github.com/mattbryson/TouchSwipe-Jquery-Plugin
添加在HTML頁面中
<script src="js/jquery.touchSwipe.min.js"></script>
$("#id").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"
});
我正在使用iOS和Android TouchSwipe >> http://labs.rampinteractive.co .UK/touchSwipe /演示/ Handlers_and_events.html – Ved