我正在使用owl-carousel作为滑块,我想要的是在移动视图中跳转到第三张图片,应该怎么做?
这是我的js代码:
$(document).ready(function(){
$("#owl-demo").owlCarousel({
autoPlay: true, // Set AutoPlay to 3 seconds
items: 5,
itemsDesktop: [1199, 3],
itemsDesktopSmall: [979, 3],
itemsMobile: [479, 1]
});
})
提前谢谢! :)
答案 0 :(得分:0)
$(document).ready(function(){
$("#owl-demo").owlCarousel({
autoPlay: true, // Set AutoPlay to 3 seconds
items: 5,
itemsDesktop: [1199, 3],
itemsDesktopSmall: [979, 3],
itemsMobile: [479, 1]
});
var owl = $("#owl-demo");
owl.jumpTo(x) //x= some number
})