slideBy owlCarousel不起作用

时间:2018-06-05 19:07:21

标签: javascript jquery owl-carousel

我需要它,以便点击导航时,猫头鹰旋转木马会滑动6而不是1.相关配置如下:

$(function() {
  $(".owl-carousel").owlCarousel({
    // mobile
    nav: false,
    navText: '',
    items: 2,
    responsiveClass:true,
    // desktop
    responsive:{
        980:{
            items:6,
            nav: true,
            navText: '',
            slideBy: 6
        }
    }
  });
});

我发现了slideBy来自:

Slide 2 items in OWL Carousel

Owl-Carousel, scroll two items at a time

owl carousel slide n by n

但在我的实例中,它不起作用。我需要添加/删除哪些配置才能使其正常工作?

1 个答案:

答案 0 :(得分:0)

我需要从2.2.1更改为2.3.4才能访问此功能。