$(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
。
感谢。
答案 0 :(得分:2)
在所有情况下,您都应该为元素添加owl-carousel
类,
例如:
<div class="your-own-class owl-carousel"></div>