Only swipeone is working with jGestures

前端 未结 7 2415
抹茶落季
抹茶落季 2021-02-10 09:56

I\'m trying to implement touch evens with jGestures. swipeone works fine but anything else (swipeleft, swiperight etc) is not firing.

相关标签:
7条回答
  • 2021-02-10 10:37

    You could try both:

    $('#wrap').bind('swipeleftup', function(){
        doSomething();
    });
    
    $('#wrap').bind('swipeleftdown', function(){
        doSomething();
    });
    

    And forget about 'swipeleft' as is quite difficult to trigger, as mentioned before.

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