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

前端 未结 5 1588
攒了一身酷
攒了一身酷 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:41

    Disable the auto loop option

    loop: false,
    

    and use the below CSS

    .owl-prev.disabled , .owl-next.disabled{
        opacity:0;
    }
    

提交回复
热议问题