Owl Carousel Won't Autoplay

后端 未结 15 1291
失恋的感觉
失恋的感觉 2020-12-01 18:06

I\'m using the Owl Carousel on my site. According to their documentation, this piece of JavaScript should work:



        
15条回答
  •  余生分开走
    2020-12-01 18:25

    With version 2.3.4, you need the to add the owl.autoplay.js plugin. Then do the following

    var owl = $('.owl-carousel');
    owl.owlCarousel({
       items:1, //how many items you want to display
        loop:true,
        margin:10,
        autoplay:true,
        autoplayTimeout:10000,
        autoplayHoverPause:true
    });
    

提交回复
热议问题