我正在为某人看这个代码,不知道可能是什么问题。
url是http://www.stfphc.org/new-site/
您可以更改循环的滑块设置
$(".owl-carousel").owlCarousel({
autoPlay: true,
navigation : false, // Show next and prev buttons
slideSpeed : 10000,
paginationSpeed : 500,
loop:true
});
- 您应该将OW-Carousel更新为当前版本OWL-Carousel-2
- 您也可以更新代码
$(".owl-carousel").owlCarousel({
autoPlay: true,
navigation : false, // Show next and prev buttons
slideSpeed : 10000,
paginationSpeed : 500,
loop:true,
responsiveClass:true,
responsive:{
0:{
items:1,
nav:false
},
640:{
items:1,
nav:false
},
800:{
items:1,
nav:false
}
}
});