我遇到了問題,試圖讓我的圖像完全適合框。如何使twitter引導3圖像輪播自動調整圖像大小以適合輪播?
我希望他們保持長寬比,大小,尺寸,但是適合/縮小到旋轉木馬盒中。
,你可以看到我在想念着一半的圖像,這是因爲我有一組的高度,但我希望它自動調整大小以適應傳送帶盒如果是有道理的......
www.bollinbuild.co.uk/index.html是你可以看到旋轉木馬的行動。
每幅圖像的尺寸都大於旋轉木馬的尺寸,所以我失去了一半的圖像和質量。
im使用的是3張圖片;
www.bollinbuild.co.uk/images/1.jpg
www.bollinbuild.co.uk/images/2.jpg
www.bollinbuild.co.uk/images/3.jpg
這是我的代碼;
CSS
<style type="text/css">
.item{
text-align: center;
width: auto;
}
.bs-example{
margin: 10px;
}
.slider-size {
height: 300px; /* This is your slider height */
}
.carousel {
width:80%;
margin:0 auto; /* center your carousel if other than 100% */
}
</style>
HTML
<div class="container">
<div class="row">
<div class="bs-example">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Carousel indicators -->
<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>
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item">
<div style="background:url(/images/1.jpg) center center;
background-size:cover;" class="slider-size">
</div>
</div>
<div class="item">
<div style="background:url(/images/2.jpg) center center;
background-size:cover;" class="slider-size">
</div>
</div>
<div class="item">
<div style="background:url(/images/3.jpg) center center;
background-size:cover;" class="slider-size">
</div>
</div>
</div><!-- /.END CAROUSEL DIV -->
</div><!-- /.END MYCAROUSEL DIV -->
</div><!-- /.END BSEXAMPLE -->
</div>
</div>
我讀到把圖像作爲一個div和作爲背景的網址而不是在標籤,但即時通訊仍然沒有得到完整的圖像坐在旋轉木馬上。
Replace the image with a container div using the image file as a background. Set width to 100% so it will expand to fill it’s container. Set the height of the slider so it will have a consistent display regardless of the image size. Win
源http://parkhurstdesign.com/improved-carousels-twitter-bootstrap/
不,我想旋轉木馬是我已經設置它的大小,80%的寬度和300px的高度。我想要這些圖像適合這個......但3張圖像的高度是600px +,因此我沒有把整個圖像放到盒子裏。 我想調整大小,如果這有道理 – Grovesy 2014-08-29 03:52:02