1

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

$('#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');
4

1 回答 1

2

将间隔设置为最低

 // invoke the carousel
   $('#myCarousel').carousel({
     interval: 2000
    });
于 2013-02-18T14:25:37.773 回答