答案 0 :(得分:10)
此功能目前为slated to be included in the 2.3 milestone(目前为2.1)。目前有pull request已经实现了这个功能,我建议使用它而不是自己动手,因为一旦功能正式集成,它更有可能与最终的API保持一致。
插件的来源可以在mikaelbr's fork of the Bootstrap project中找到。您将需要 bootstrap-carousel.js 和 carousel.less 。
这是一个演示:
答案 1 :(得分:6)
使用最新的轮播,您可以使用轮播指标类:
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
答案 2 :(得分:2)
这是一种有点hacky的做法,因为我必须为我的网站做这个。 更新了小提琴:http://jsfiddle.net/qXgCg/2/
//Javascript
var slider = $(".carousel-inner")
.carousel({ interval: 5000 })
.bind('slid', function() {
var index = $(this).find(".active").index();
$(this).find("a").removeClass('pager-active').eq(index).addClass('pager-active');
});
$(".slider-pager a").click(function(e){
var index = $(this).index();
slider.carousel(index);
e.preventDefault();
});
/* css */
.slider-pager { margin-top: 10px; }
.slider-pager a { display: block; height: 10px; width: 10px; float: left; margin-right: 10px; border-radius: 50%; background: #41af96; font-size: 1px; color: #fff; text-indent: -9999px; }
.slider-pager a.pager-active { background: #2c8571; }
<!--html --->
<div class="slider-pager">
<a href="#main-slider" class="pager-active">0</a>
<a href="#main-slider">1</a>
<a href="#main-slider">2</a>
</div>