長いページの上部に単純な Bootstrap Carousel があります。カルーセルのアイテムはテキストと画像が混在しているため、常に同じ高さではありません。
これにより、カルーセルの下にバウンス ページが表示されます。レスポンシブ レイアウトを維持し、テキストのバウンスを停止する方法を見つけるのを手伝ってもらえますか? 船酔いしちゃった!
このソリューションでは、次のことを解決する必要があります。
- カルーセルの下のテキストのバウンスを停止
- レスポンシブ ページが特定の幅を下回る場合、2 列のカルーセル アイテムが 1 列に折りたたまれることを引き続き許可します (これは、1 列の狭いウィンドウで表示すると、カルーセルの高さが 2 倍になる可能性があることを意味します)。
フィドル: http://jsfiddle.net/PmZnh/1/
<h1>This is my carousel site</h1>
<hr>
<div id="myCarousel" class="carousel slide">
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item">
<h2>List One</h2>
<ul><li>Item 1</li><li>Item 2</li><li>Item 3</li></ul>
</div>
<div class="item">
<h2>List Two</h2>
<ul><li>Item 1</li><li>Item 2</li><li>Item 3</li><li>Item 4</li><li>Item 5</li></ul>
</div>
<div class="item">
<h2>List Three</h2>
<ul><li>Item 1 is longer this time. Way longer than the first time. It just keeps going and going and going.</li><li>Item 2</li><li>Item 3</li><li>Getting sea sick yet?</li></ul>
</div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">›</a>
</div>
<hr>
<p>The rest of the text on the site shouldn't bounce and should be responsive-friendly!</p>
<p>1. the .items are flexible height (but usually within 10-20px)<br>
2. when the page width is below 760px the list shrinks from two columns to one column, meaning the height may now be twice as tall as before.</p>