0
私はwordpress内で使用しようとしているtwitter Bootstrapカルーセルを持っていて、すべての写真を重ねて回転させません。Twitter Bootstrapカルーセルタックが回転しない
あなたはそれを見て、私が意味するものを見ることができますhere。
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="http://i0.wp.com/www.cattywampur.com/wp-content/uploads/2016/03/8566819595_0f567e8594_k.jpg" >
<div class="carousel-caption">
<h3>Traversing the Grand Canyon</h3>
</div>
</div>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="http://i2.wp.com/www.cattywampur.com/wp-content/uploads/2016/05/26300985983_713ab03dc1_k.jpg" >
<div class="carousel-caption">
<h3>San Jacinto - Deer Springs Trail</h3>
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
驚いたことに固定してありがとう!今ではその "働いている"私はカルーセルがもっと反応しているだろうと思った....私がそこに持っている写真は、一種の中心がない。 – Mike
それは応答します。スライダの場合と同様に、ビューポートに対する相対的なサイズ変更。しかし、これを達成するためには '100%'の幅が必要となり、すべての画像の高さを自動調整します。ただそれらを伸ばすのを避けるために。おそらくここからいくつかのトリックを試すことができます。 [Diff height Images/Stackoverflow](http://stackoverflow.com/q/13391566/5496966) – AA2992