如果沒有足夠的項目滾動,是否有辦法禁用上一個和下一個鏈接?如果沒有足夠的項目滾動,如何禁用OwlCarousel2中的上一個/下一個?
例如:http://truewest.nextmp.net/special-programs這些畫廊允許4個項目(桌面),此畫廊中只有4個項目,但仍然顯示分頁按鈕,但應該禁用。
我知道在以前的版本中有這樣做的方法,但是.disabled類不會加載到這個鏈接上?我沒有看到它在任何演示中都這樣做...
我可以使用一些額外的jquery來覆蓋這個,或者是否有什麼內置的我,我失蹤了?
這裏是我的代碼:
$(".owl-carousel").owlCarousel({
items: 4,
loop: true,
rewindNav: false,
autoplayHoverPause: true,
margin: 0,
dots: false,
navText: "<>",
responsive:{
0:{ // breakpoint from 0 up - small smartphones
items:1,
nav:true
},
480:{ // breakpoint from 480 up - smartphones // landscape
items:2,
nav:false
},
768:{ // breakpoint from 768 up - tablets
items:3,
nav:true,
loop:false
},
992:{ // breakpoint from 992 up - desktop
items:4,
nav:true,
loop:false
}
}
});
與此問題類似:http://stackoverflow.com/questions/28342603/jquery-owl-carousel-2-hide-navigation? - 但是這個解決方案對我來說真的不起作用。臨時修補程序不會在加載時將「禁用」類添加到適用的「prev/next」類中,只有在您滾動到結尾之後,纔會將其添加到「下一個」,然後當您滾動回到開頭時,它將其添加到「prev」 – ByteMyPixel