How to scroll up and scroll down in jQuery?

Could you tell me how to scroll up and scroll down in jQuery + jQuery mobile.

I already use this plugin: How to scroll down down JQuery mobile

Demerit: when I scroll through the contents, it calls the swipe up and down. Can you give a better solution so that I can scroll my content and scroll up and down using jQuery or jQuery mobile.

+4
source share
1 answer

Download from https://github.com/mattbryson/TouchSwipe-Jquery-Plugin

Add to html page

<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

+9

All Articles