我正在努力确保我的旋转木马尺寸在高度方面保持不变。我使用不同的图像,我知道图像大小不同,但不知道如何控制图像的高度。无论图像大小如何,我希望我的旋转木马高度保持不变,那我该如何控制呢?这是我正在使用的代码:
<div id="myCarousel" class="carousel slide" data-ride="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>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<%--<img src="img_chania.jpg" alt="Chania" width="460" height="345">--%>
<img src="img/sleep1.jpg" alt="Chania" width="460" height="345" />
<div class="carousel-caption">
<h1>Example headline.</h1>
<p>this is test </p>
</div>
</div>
<div class="item">
<%-- <img src="img_chania2.jpg" alt="Chania" width="460" height="345">--%>
<img src="img/image5.jpg" alt="Chania" width="460" height="345"/>
</div>
<div class="item">
<%--<img src="img_flower.jpg" alt="Flower" width="460" height="345">--%>
<img src="img/nature3.jpg" alt="Chania" width="460" height="145" />
<div class="carousel-caption">
<h1>Example headline.</h1>
<p>this is test </p>
</div>
</div>
<div class="item">
<%--<img src="img_flower2.jpg" alt="Flower" width="460" height="345">--%>
<img src="img/nature2.jpg" alt="Chania" width="460" height="245"/>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" 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="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
答案 0 :(得分:3)
在类.item
上添加一些自定义CSS,它会覆盖Bootstraps核心CSS,如下所示:
<style>
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
display: block;
max-width: 100%;
height: 400px !important;
}
</style>
这将使旋转木马尺寸为400px。
默认情况下,高度设置为auto,但由于我们不希望这样,我们手动设置一个大小并说它是!important
,因此浏览器知道此样式是否覆盖了先前的bootstrap css集。
我希望这有帮助并且有意义。
答案 1 :(得分:0)
我通过将此代码添加到标记
中解决了这个问题<div id="Div1" class="carousel" runat="server" style="height:800px !important;">
它会自动增加大小,如果你想增加宽度。 谢谢