我在我的RoR应用程序中添加了bootstrap轮播,但旋转木马似乎没有工作。从stackoverflow咨询后,有人建议使用$('#myCarousel').carousel()
,但它没有做到这一点。我的应用程序转到链接localhost:3000/#carousel-example-captions
,没有轮播幻灯片。
我的轮播代码如下:
<div id="carousel-example-captions" class="carousel slide">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-captions" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-captions" data-slide-to="1"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="http://i.imm.io/1g9kc.png" alt="..." />
<div class="carousel-caption">aaaaa</div>
</div>
<div class="item">
<img src="http://i.imm.io/1g9kF.png" alt="..." />
<div class="carousel-caption">gggggg</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-captions" data-slide="prev">
<span class="icon-prev"></span>
</a>
<a class="right carousel-control" href="#carousel-example-captions" data-slide="next">
<span class="icon-next"></span>
</a>
更新:我不确定我是否在正确的地方写$('#id').carousel()
。我尝试在application.js,home.js.coffee中添加以下代码,紧接在<script>
标签中的轮播视图之后(我是RoR中的新手,所以我无法确定约定) :
$(document).ready(function () {
$('#carousel-example-captions').carousel();
});
答案 0 :(得分:0)
您没有为您的轮播使用“默认”ID,因此您必须使用该ID初始化它...
$(".carousel-example-generic").carousel()
答案 1 :(得分:0)
您可以在轮播包装器中使用data-ride="carousel"
属性启动轮播功能。你的第一行看起来像:
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
不确定是否是错误,但在您粘贴的代码中,您需要在最后一行关闭div
标记。