gpt4 book ai didi

html - 如何使 Bootstrap Carousel 中的图像响应?

转载 作者:太空狗 更新时间:2023-10-29 15:41:04 24 4
gpt4 key购买 nike

有没有办法让 Bootstrap 轮播中的图像以固定高度响应?我已经尝试了一切。我还使用了 img-responsive,在 CSS 中我也尝试了一切。

这是我的html

    <div class="item active">
<img src="images/slide1.jpg" alt="First slide" class="img-responsive">
<div class="container">
<div class="carousel-caption" style="padding-bottom:90px;">
<h1>Totes for all</h1>
<p>Personalize your style</p>
<p><a class="btn btn-lg btn-primary" href="#" role="button">View all</a></p>
</div><!-- /.carousel-caption -->
</div><!-- /.container -->
</div><!-- /.item -->

<div class="item">
<img src="images/slide2.png" alt="Second slide" class="img-responsive">
<div class="container">
<div class="carousel-caption">
<div class="caption_background">
<h1>Pattern it</h1>
<p>Choose your favorite</p>
</div>
<p><a class="btn btn-lg btn-primary" href="#" role="button">View all</a></p>
</div><!-- /.carousel-caption -->
</div><!-- /.container -->
</div><!-- /.item -->

</div><!-- /.carousel-inner -->

<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev"><span class="glyphicon glyphicon-chevron-left"></span></a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next"><span class="glyphicon glyphicon-chevron-right"></span></a>
</div><!-- /.myCarousel -->

这是我的 CSS

http://paste.ubuntu.com/7908633/

最佳答案

试试这个 jq,它让你的 .carousel-inner 成为窗口高度。但记得 -height 你的导航栏,页脚等。所有其他元素/div 高度你必须-。

function init_carousel() {
H = +($(window).height() /* -height here */); // or $('.carousel-inner') as you want ...
$('.carousel-inner').css('height', H + 'px');
}
window.onload = init_carousel;
init_carousel();

关于html - 如何使 Bootstrap Carousel 中的图像响应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25047333/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com