A slideshow component for cycling through elements—images or slides of text—like a carousel.
<div class="owl-carousel">
<div>...</div>
<div>...</div>
...
</div>
There is a number of data attribute options to customise your carousel:
data-items="[3,2,1]"
[large,medium,small]
data-margin="10"
data-center="true"
data-nav="true"
data-dots="true"
data-autoplay="true"
data-loop="true"
data-autoheight="true"
<div class="owl-carousel owl-carousel-single">
<div>...</div>
<div>...</div>
...
</div>