滑鼠滚轮在滑行之前跳至上一张滑行

时间:2018-06-21 09:20:47

标签: jquery owl-carousel-2

我使用owl-carousel和jquery-mousewheel制作了一个滑动条,该旋转条的效果很好,除了当我在鼠标滚轮上快速移动时(超过1个增量),幻灯片会跳至最后一张幻灯片,然后再开始滑动我选择的方向。知道可能是什么问题吗?

    $(document).ready(function ($) {
    var owl = $('.owl-carousel.big');
    owl.owlCarousel({
    loop:true,
    nav:false,
    dots: false,
    smartSpeed: 1500,
    margin:0,
    responsive:{
        0:{
            items:1,
            smartSpeed: 800
        },
        992:{
            items:1,
            smartSpeed: 1500
        }
    }
});

    owl.on('mousewheel', '.owl-stage', function (e) {
        if (e.deltaY>0) {
            owl.trigger('next.owl');
        } else {
            owl.trigger('prev.owl');
        }
        e.preventDefault();
    });
});

0 个答案:

没有答案