我正在寻找使用引导程序创建一个轮播。我希望图像(具有不同宽度和高度)以固定比例显示,. 我尝试使用 CSS 中断和图像比例中断并继承轮播的大小。
CSS
.carousel .item > img {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
height: 702px;
max-width: none;
}
html代码:
<div id="myCarousel" class="carousel slide">
<div class="carousel-inner">
<div class="active item">
<img src="image1.jpg"/>
</div>
<div class="item">
<img src="image1.jpg"/>
</div>
</div>
</div>
我应该寻找另一种保持图像比例的轮播解决方案还是有解决方法?
编辑 1:
.carousel .item > img {
max-width: 100%;
height: 100%;
width: auto;
text-align: center;
margin: 0 auto;
}