轻触功能,带触摸功能

时间:2013-09-27 17:28:52

标签: jquery swipe

我有以下代码,当用户滑动.carousel时执行函数。但是我不太清楚如何使用tap功能,我想在用户点击.carousel元素内的链接时执行一个函数。我怎么写这个?谢谢!

 $(".carousel").swipe({
      excludedElements: "button, input, select, textarea, .noSwipe",
      swipeLeft: function() {
        $('.carousel').trigger('next', 4);
      },
      swipeRight: function() {
        $('.carousel').trigger('prev', 4);
      },
      tap: function(event, target) {
       ...............
      }
    });

0 个答案:

没有答案