4

你能告诉我如何在 jQuery + jQuery mobile 中向上滑动和向下滑动。

我已经使用了这个插件: How to swipe top down JQuery mobile

缺点:当我滚动内容时,它会调用上下滑动功能。您能否提供最佳解决方案,以便我能够使用 jQuery 或 jQuery mobile 滚动我的内容并上下滑动。

4

1 回答 1

9

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"
});

或者试试这个https://github.com/watusi/jquery-mobile-iscrollview

于 2013-11-09T07:33:44.483 回答