使引导轮播对高度做出响应
Posted
技术标签:
【中文标题】使引导轮播对高度做出响应【英文标题】:Make bootstrap carousel responsive on height 【发布时间】:2014-01-17 22:17:37 【问题描述】:我需要自定义 BS 轮播,以使图像大小响应正确。 我需要轮播来适应活动幻灯片图像初始高度的高度。 当视口比图像宽时,图像/幻灯片应按比例放大,但保持比例。 当视口较小时,图像应按比例缩小但保持比例。
我尝试了很多变体,但找不到合适的解决方案。
我希望一些 css/js 专家可以帮助我。
这是我当前的标记:
<!-- Carousel
================================================== -->
<div id="myCarousel" class="carousel slide" data-ride="carousel" data-pause="true">
<!-- 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>
<div class="carousel-inner">
<div class="item active"><!--data-src="holder.js/900x500/auto/#777:#7a7a7a/text:First slide"-->
<img src="MediaContent/Images/Unika%20kobbertryk%201.jpg" >
<div class="container">
<div class="carousel-caption">
<h1>Example headline.</h1>
<p>Note: If you're viewing this page via a <code>file://</code> URL, the "next" and "previous" Glyphicon buttons on the left and right might not load/display properly due to web browser security rules.</p>
<p><a class="btn btn-lg btn-primary" href="#" role="button">Sign up today</a></p>
</div>
</div>
</div>
<div class="item"> <!--data-src="holder.js/900x500/auto/#666:#6a6a6a/text:Second slide" -->
<img src="MediaContent/Images/Unika%20kobbertryk%202.jpg" >
<div class="container">
<div class="carousel-caption">
<h1>Another example headline.</h1>
<p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
<p><a class="btn btn-lg btn-primary" href="#" role="button">Learn more</a></p>
</div>
</div>
</div>
<div class="item"><!--data-src="holder.js/900x500/auto/#555:#5a5a5a/text:Third slide"-->
<img src="MediaContent/Images/Unika%20kobbertryk%203.jpg" >
<div class="container">
<div class="carousel-caption">
<h1>One more for good measure.</h1>
<p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
<p><a class="btn btn-lg btn-primary" href="#" role="button">Browse gallery</a></p>
</div>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" data-slide="prev"><span class="glyphicon glyphicon-chevron-left"></span></a>
<a class="right carousel-control" href="#myCarousel" data-slide="next"><span class="glyphicon glyphicon-chevron-right"></span></a>
</div><!-- /.carousel -->
这是我目前的 css,它的功能不像描述的那样。这个版本给了我一个固定的 500px 高度,当视口小于图像宽度时,图像会失去纵横比。
/* GLOBAL STYLES
body
padding-bottom: 40px;
color: #5a5a5a;
/* CUSTOMIZE THE NAVBAR
-------------------------------------------------- */
/* Special class on .container surrounding .navbar, used for positioning it into place. */
.navbar-wrapper
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 20;
/* Flip around the padding for proper display in narrow viewports */
.navbar-wrapper .container
padding-left: 0;
padding-right: 0;
.navbar-wrapper .navbar
padding-left: 15px;
padding-right: 15px;
/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
/* Carousel base class */
.carousel
min-height: 500px;
margin-bottom: 60px;
/* Since positioning the image, we need to help out the caption */
.carousel-caption
z-index: 10;
/* Declare heights because of positioning of img element */
.carousel .item
min-height: 500px;
background-color: #777;
.carousel-inner > .item > img
position: absolute;
top: 0;
left: 0;
min-width: 100%;
min-height: 500px;
/* MARKETING CONTENT
-------------------------------------------------- */
/* Pad the edges of the mobile views a bit */
.marketing
padding-left: 15px;
padding-right: 15px;
/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4
text-align: center;
margin-bottom: 20px;
.marketing h2
font-weight: normal;
.marketing .col-lg-4 p
margin-left: 10px;
margin-right: 10px;
/* Featurettes
------------------------- */
.featurette-divider
margin: 80px 0; /* Space out the Bootstrap <hr> more */
/* Thin out the marketing headings */
.featurette-heading
font-weight: 300;
line-height: 1;
letter-spacing: -1px;
/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 768px)
/* Remove the edge padding needed for mobile */
.marketing
padding-left: 0;
padding-right: 0;
/* Navbar positioning foo */
.navbar-wrapper
margin-top: 20px;
.navbar-wrapper .container
padding-left: 15px;
padding-right: 15px;
.navbar-wrapper .navbar
padding-left: 0;
padding-right: 0;
/* The navbar becomes detached from the top, so we round the corners */
.navbar-wrapper .navbar
border-radius: 4px;
/* Bump up size of carousel content */
.carousel-caption p
margin-bottom: 20px;
font-size: 21px;
line-height: 1.4;
.featurette-heading
font-size: 50px;
@media (min-width: 992px)
.featurette-heading
margin-top: 120px;
任何帮助表示赞赏。
【问题讨论】:
【参考方案1】:在 CSS 选择器 .carousel-inner > .item > img
中,将 min-width
替换为 width: 100%;
.carousel-inner > .item > img
min-width: 100%;
width: 100%;
【讨论】:
这行得通!在我的 bootstrap.css 中,该选择器的默认值是max-width: 100%
。如果我将其更改为width:100%
,所有图像都会“拉伸”以填充视口宽度。【参考方案2】:
我修复了它为轮播中的图像添加一个类,例如:
<img class="fixed-height">
在css中:
.fixed-height
max-height: 400px;
【讨论】:
【参考方案3】:我会推荐你在图像标签中添加“img-responsive”类。 Bootstrap 将为您完成剩下的工作。
这个类告诉引导程序你想根据屏幕大小缩放图像。
<div class="carousel slide" id="theCarousel" data-interval="3000">
<ol class="carousel-indicators">
<li data-target="#theCarousel" data-slide-to="0" class="active"></li>
<li data-target="#theCarousel" data-slide-to="1"></li>
<li data-target="#theCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img src="http://www.ansupalake.in/gallery/tapan%20kumar%201.JPG" class="img-responsive" />
<div class="carousel-caption">
<h4 class="text-left">Resting In Style</h4>
<p class="text-left">Hi Everybody what's going on.....</p>
</div>
</div>
<div class="item ">
<img src="http://www.ansupalake.in/gallery/tapan%20kumar%202.JPG" class="img-responsive" />
<div class="carousel-caption">
<h4 class="text-left">The Dude Look</h4>
<p class="text-left">Hi Everybody what's going on.....</p>
</div>
</div>
<div class="item ">
<img src="http://www.ansupalake.in/gallery/tapan%20kumar.JPG" class="img-responsive" />
<div class="carousel-caption">
<h4 class="text-left">How z It??</h4>
<p class="text-left">Hi Everybody what's going on.....</p>
</div>
</div>
</div>
</div>
更多详情这里我有一篇重新评分的文章,你可以看看
Carousel Image Slider In Bootstrap 3
【讨论】:
我不认为这是正确的答案,至少在当前的 Bootstrap 3 中。在我的 bootstrap.css 中img-responsive
和 .carousel-inner > .item > img
共享相同的规则。 OP 将图像放在 .carousel-inner>.item 中,因此应该启用它。【参考方案4】:
我遇到了和上面一样的问题。这是我的解决方案。我更改了几行 CSS:
.carousel
margin-bottom: 60px;
/* Since positioning the image, we need to help out the caption */
.carousel-caption
z-index: 10;
/* Declare heights because of positioning of img element */
.carousel .item
min-width: 100%;
background-color: #fff;
.carousel-inner > .item > img
min-width: 100%;
height: 100%;
我希望这会有所帮助。
【讨论】:
【参考方案5】:为每个设备定义,例如
@media (min-width: 360px)
.carousel
min-height: 140px;
margin-bottom: 60px;
/* Since positioning the image, we need to help out the caption */
.carousel-caption
z-index: 10;
/* Declare heights because of positioning of img element */
.carousel .item
min-height: 140px;
background-color: #777;
.carousel-inner > .item > img
position: absolute;
top: 0;
left: 0;
min-width: 100%;
min-height: 140px;
【讨论】:
【参考方案6】:要在不同大小的 Bootstrap 轮播中使用图像并同时执行以下操作,
-
轮播图上的图片宽度 = 100%
轮播图片幻灯片高度 = 固定
保持图像比例
删除 img 标记并添加一个新类,例如 slide1
<div class="item slide1">
<div class="container">
<div class="carousel-caption">
<h1>Slide1 headline.</h1>
<p>Slide content.</p>
</div>
</div>
</div>
然后为 slide1 类添加以下 CSS 代码,
.slide1
height: 500px; /* your desired height for this slide */
background: url(/img/your-img.jpg) no-repeat center center;
background-size: cover;
您还可以为不同的窗口大小配置此高度。
【讨论】:
这不会像 OP 要求的那样适应视口,因为您设置的是固定高度 yap only height* 应该为不同的尺寸手动配置,正如我之前提到的。但里面的内容会采用视口,图像也会保持比例【参考方案7】:我在图像标签中添加“img-responsive”类使图像响应时遇到了同样的问题
<div class="carousel-inner">
<div class="item active">
<img src="/imahes/my-image.jpg" class="img-responsive" />
<div class="carousel-caption">
<h4 class="text-left">My caption</h4>
</div>
</div>
但问题在于滑块高度,所以我需要添加媒体查询来调整控件 div 的大小
@media (max-width: 800px)
.carousel-control
height:350px;
此媒体查询只是一个示例,请根据您的需要进行自定义,希望对您有所帮助
【讨论】:
以上是关于使引导轮播对高度做出响应的主要内容,如果未能解决你的问题,请参考以下文章