猫头鹰旋转木马激活器div类名称

时间:2017-01-19 15:39:54

标签: jquery html5 owl-carousel

$(document).ready(function() {
    $('.owl-carousel').owlCarousel({
        margin: 10,
        nav: true,
        loop: true,
        responsive: {
            0: {
                items: 1
            },
            600: {
                items: 3
            },
            1000: {
                items: 5
            }
        }
    })
});

上面的代码工作正常。但是,当我更改名为owl-carousel的类时,它无效。我的问题是为什么它不与任何其他班级合作。是否需要保留班级名称owl-carousel

感谢。

1 个答案:

答案 0 :(得分:2)

在所有情况下,您都应该为元素添加owl-carousel类, 例如:

<div class="your-own-class owl-carousel"></div>