How can I make the Bootstrap js carousel automatically cycle as soon as the page loads?

前端 未结 15 1555
花落未央
花落未央 2020-12-04 21:53

Using bootstrap.js version 2.02

I\'m trying to get the Twitter Bootstrap Carousel to automatically cycle as soon as someone visits my site. Right now, the auto cycl

15条回答
  •  爱一瞬间的悲伤
    2020-12-04 22:53

    Not sure if you got this sorted out, but I was having that problem as well. I resolved it by wrapping the carousel interval setting in a function like this:

    !function ($) {
    $(function() {
        $('.carousel').carousel({ interval: 3000 })
    });
    }(window.jQuery);
    

提交回复
热议问题