页面加载后没有自动播放(Twitter引导程序轮播)

时间:2013-02-18 14:11:51

标签: javascript jquery twitter-bootstrap

我的滑块在页面加载后没有自动播放。如果我右键单击,则打开自动播放。有什么问题?

$('#myCarousel').on('slid', '', function() {
    var $this = $(this);

    $this.children('.carousel-control').show();
    if($('.carousel-inner .item:first').hasClass('active')) {
      $this.children('.left.carousel-control').hide();
    } 
    else if($('.carousel-inner .item:last').hasClass('active')) {
      $this.children('.right.carousel-control').hide();
  }

}).trigger('slid');

1 个答案:

答案 0 :(得分:2)

将间隔设置为最低

 // invoke the carousel
   $('#myCarousel').carousel({
     interval: 2000
    });