Only swipeone is working with jGestures

前端 未结 7 2426
抹茶落季
抹茶落季 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:27

    try this:

    $('#wrap').bind('swipeone', function (event, obj) {
       var direction=obj.description.split(":")[2]
       if(direction=="left"){
            doSomething();
       }
    });
    

提交回复
热议问题