我正在为我的网站的移动版使用TouchSwipe jQuery插件。我需要在一次滑动中触发多个点击事件,例如每15次滑动 - 一次点击。我用谷歌搜索,但没有找到解决方案。
事情是 - 我正在使用Joomla(sigplus)的旋转木马插件,不幸的是,它不支持手指滑动。我试图通过使用TouchSwipe按下旋转木马按钮来模拟滑动功能。目前我有这样的代码:
jQuery(function($) {
$(".s2").swipe({
excludedElements: "button, input, select, textarea, .noSwipe",
swipeLeft:function(event, direction, distance, duration, fingerCount) {
$( '.boxplus-next' ).click();
},
swipeRight:function(event, direction, distance, duration, fingerCount) {
$('.boxplus-prev').click();
},
triggerOnTouchEnd:false,
threshold:15
});
});
它工作正常,但每次触摸只在旋转木马中滚动一个图像。也许触发后可以重启功能?
由于
P.S。对不起我的英文