Owl Carousel Will Not Autoplay

前端 未结 7 1358
梦谈多话
梦谈多话 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:07

    This is what you need to do, when you call the owl-demo / owl-carousel you need to add
    | autoPlay: 3000 | (----- 3000 = 3sec rotation between images.
    You don't need to touch anything else.

    $(document).ready(function() {
    
      var owl = $("#owl-demo");
    
      owl.owlCarousel({
        navigation : false,
        singleItem : true,
        autoPlay: 3000,
        transitionStyle : "fadeUp"
    
      });
    
    });
    

提交回复
热议问题