Adam Pavlov
Adam Pavlov

Reputation: 307

Owl Carousel 2 loop false if item less than 3

How to make owl carousel loop false if item length is less than 3.

<div class="owl-carousel owl-theme">
    <div class="item">
    <img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png">
    </div>
</div>

Demo

Upvotes: 0

Views: 1195

Answers (1)

Death-is-the-real-truth
Death-is-the-real-truth

Reputation: 72299

Simply check <img> length:

loop: $('.item img').lenght > 2 ? true : false,

https://jsfiddle.net/rkLvx3zy/2/

Upvotes: 1

Related Questions