Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I stop Owl carousel from rewinding? I just want a seamless loop

How do I make the Owl carousel from rewinding? I just want a continuous loop. Do I need to write a full callback for something that should already included in the plugin? I tried to use the loop: true; no luck.

like image 655
DSA Web Specialists Avatar asked Oct 13 '14 22:10

DSA Web Specialists


1 Answers

As an example, try this setting

$("#owl-demo").owlCarousel({
  autoPlay: 3000, //Set AutoPlay to 3 seconds
  items : 4,
  rewindNav:false //**This

});
like image 176
Macsupport Avatar answered Sep 18 '22 17:09

Macsupport