我正在使用owl carousel v2(因为无限循环)。在版本1.3中,如果您只有一个div-Slide,则不会显示导航。在v2中,始终显示导航,如何在v1.3上更改导航。
我的代码:
$("#XX").owlCarousel({
center: true,
items: 1,
nav: true
});
感谢您的帮助。
此致 托马斯
答案 0 :(得分:1)
我不会修改核心文件。 OwlCarousel有一个很好的API和选项,可以在不触及.js文件的情况下实现它。
// Init owl-carousel and get your owlcarousel data
$('.owl-carousel').owlCarousel({});
var carousel = $('.owl-carousel').data('owlCarousel');
// and then you can use this function on window resize or do whatever you like
if (carousel._items.length <= carousel.settings.items) {
carousel.settings.nav = false;
}
答案 1 :(得分:0)
修改文件owl.carousel.js,功能
Owl.prototype.optionsLogic = function()
添加以下内容:
if (this._items.length <= this.settings.items) {
this.settings.nav = false;
}