How can I disable previous/next in OwlCarousel2 if there aren't enough items to scroll?

前端 未结 5 1590
攒了一身酷
攒了一身酷 2021-01-29 01:09

Is there a way to disable the previous and next links if there aren’t enough items to scroll?

For example: http://truewest.nextmp.net/special-programs these galleries al

5条回答
  •  太阳男子
    2021-01-29 01:40

    In Owl carousel 2, it will automatically adds "disabled" class to the prev and next navigation controllers when it reaches first and last elements. Therefore you can just add this css code.

    .owl-nav .disabled {
      display: none;
    }
    

提交回复
热议问题