CarouFredSel Plugin using TouchSwipe with links not working

后端 未结 6 1090
梦谈多话
梦谈多话 2021-02-01 23:53

I\'m using the awesome CarouFredSel JQuery carousel plugin which includes features for integrating the JQuery TouchSwipe library for handheld devices as well.

The caro

6条回答
  •  再見小時候
    2021-02-02 00:26

    You can use below function to enable click after swipe.

    `$('.class').swipe({
      swipe: function(event, direction, distance, duration, fingerCount) {},
      click: function(event, target) {
        $(target).click();
      },
      threshold: 75
    });`
    

    https://stackoverflow.com/a/11919170/3223427

提交回复
热议问题