Calculate swipe distance in jQuery-mobile

后端 未结 3 914
[愿得一人]
[愿得一人] 2020-12-11 16:52

I hope you are well today, I am trying to calculate the swipe distance (a touch gesture) on a mobile website, how would you work out how many pixels the user has swiped acro

相关标签:
3条回答
  • 2020-12-11 17:31

    Not sure if this helps but with Beta 2 they have released some additional swipe functionality

    • http://jquerymobile.com/blog/2011/08/03/jquery-mobile-beta-2-released/

    Configurable swipe event thresholds added

    There were a number of hard-coded constants in the jquery.mobile.event.js swipe code. For developers who need to tweak those constants to allow a greater vertical displacement and still register a swipe, this new feature allows them to be adjusted. Thanks to mlitwin for contributing this.

    • scrollSupressionThreshold (default: 10px) – More than this horizontal displacement, and we will suppress scrolling
    • durationThreshold (default: 1000ms) – More time than this, and it isn’t a swipe
    • horizontalDistanceThreshold (default: 30px) – Swipe horizontal displacement must be more than this.
    • verticalDistanceThreshold (default: 75px) – Swipe vertical displacement must be less than this.
    0 讨论(0)
  • 2020-12-11 17:44

    I would suggest the excellent jQuery TouchSwipe Plugin by Matt Bryson: http://labs.skinkers.com/touchSwipe/.

    It has touch & swipe events for 4 directions and 1 or 2 fingers. And it has SwipeStatus with which you can get swipe distance: http://labs.skinkers.com/touchSwipe/demo/Swipe_status.html

    0 讨论(0)
  • 2020-12-11 17:49

    I couldn't figure out how to get the distance on the fly from the method, so instead I just set a new global threshold on my page.

    //Override the default horizontalDistanceThreshold of 30
    $.event.special.swipe.horizontalDistanceThreshold = 200;
    

    I'm using an older version of jQM (v1.0 still...) so this may have changed. It's easy to find in the source if you just start looking for swipe events.

    0 讨论(0)
提交回复
热议问题