bxslider确定滑动事件

时间:2015-12-11 15:07:55

标签: jquery touch swipe bxslider

我的bxSlider启用了触摸事件,我试图让当前的幻灯片调用其他功能。在点击事件上正常工作,但我尝试使用触发器作为“滑动触摸标签”等,但它没有被触发。

   $("#slider-next, ul li").on("click touch tab swipe", function() {

            countSlides  = slider.getSlideCount()-1;
            currentSlide = slider.getCurrentSlide();
            console.log(countSlides + '/' + currentSlide);

            // Show related flyers
            if (countSlides == currentSlide) {
            alert.log('show');
            $('aside.right').slideUp(350);
            } else {
            alert.log('hide');
            $('aside.right').hide(350); 
            }

    });

0 个答案:

没有答案