Owl Carousel Will Not Autoplay

前端 未结 7 1357
梦谈多话
梦谈多话 2020-12-21 09:37

I\'m building a wordpress site with a JQuery carousel using the Owl Carousel 2 JQuery plugin. I\'ve used this carousel before with success, but I\'m stumped on this one and

7条回答
  •  太阳男子
    2020-12-21 10:11

    owl.owlCarousel({
            items:4,
            nav:true,
            loop:true,
            autoWidth:true,
            itemsTablet: [768,1]
        });
    
    1. First, you need to call the owl.autoplay.js.

    2. This code works for me:

      owl.trigger('play.owl.autoplay',[1000]); 
      

提交回复
热议问题