我用Owl轮播创建了一个简单的滑块。在该幻灯片中包含总共4张幻灯片。
它工作正常,但问题是在达到4张幻灯片后,转盘在向后倒带时转到第1张幻灯片。
我需要div数据中所有幻灯片的前进方向。
这是我使用过的设置,
<script>
$(document).ready(function(){
$("#testimonial-slider").owlCarousel({
items:1,
itemsDesktop:[1000,1],
itemsDesktopSmall:[979,1],
itemsTablet:[768,1],
pagination:true,
navigation:false,
navigationText:["",""],
slideSpeed:500,
singleItem:true,
autoPlay:true,
});
});
</script>