数週間前に Ruby on Rails を始めたばかりで、現在は Rails composer (twitter-bootstrap-rails gem を使用) を使用してブログを作成しています。ブートストラップ カルーセルをアプリケーション ビュー (つまり、application.html.erb) に追加したい
Twitterのブートストラップのドキュメントから古典的なhtmlコードを追加しようとしましたが、画像が表示されずに左右のコントローラーボタンを取得するだけです。
誰かが私に解決策を持っていますか?
PS : 現在、ブートストラップの設計に Sass を使用しています。
EDIT 02-11-2013 => これが私のコードです。私の間違いが何であるかを見つけていただければ幸いです
<div class="container">
<!-- Carousel -->
<!-- consult Bootstrap docs at
http://twitter.github.com/bootstrap/javascript.html#carousel -->
<div id="this-carousel-id" class="carousel slide">
<div class="carousel-inner">
<div class="active item">
<a><img src="assets/images/1.jpg" alt="Antennae Galaxies" /></a>
<div class="carousel-caption">
<p>The Antennae Galaxies</p>
<p><a href="http://hubblesite.org/gallery/album/entire/pr2006046a/xlarge_web/npp/128/">Hubblesite.org »</a></p>
</div>
</div>
<div class="item">
<a><img src="assets/images/2.jpg" alt="Carina Caterpillar" /></a>
<div class="carousel-caption">
<p>Carina Nebula: The Caterpillar</p>
<p><a href="http://hubblesite.org/gallery/album/entire/pr2007016e/xlarge_web/npp/128/">Hubblesite.org »</a></p>
</div>
</div>
</div><!-- .carousel-inner -->
<!-- next and previous controls here
href values must reference the id for this carousel -->
<a class="carousel-control left" href="#this-carousel-id" data-slide="prev">‹</a>
<a class="carousel-control right" href="#this-carousel-id" data-slide="next">›</a>
</div><!-- .carousel -->
<!-- end carousel -->
<div class="content">
<div class="row">
<div class="span12">
<%= render 'layouts/messages' %>
<%= yield %>
</div>
</div>
<footer>
</footer>
</div>
</div> <!--! end of .container -->
</div> <!--! end of #main -->
<script>
$(function(){
$('#this-carousel-id').carousel();
});
</script>
</body>
</html>
EDIT 2:そして、これはChromeでどのように見えるかです: http://s7.postimage.org/kvp5cq4tn/Capture_d_cran_11_02_13_18_46_2.png