繁体   English   中英

Bootstrap - 如何缩小图像以适应窗口高度?

[英]Bootstrap - how to make the image being scaled down to fit the window height?

如何使图像溢出高度响应?

我有时拥有的图像长度很高,使窗口滚动条可见。

在此输入图像描述

所以我想让这些高度响应 - 使图像按比例缩小以适应窗口高度。

在此输入图像描述

可能吗?

CSS,

 html, body {
    height: 100%;
    margin: 0;
    padding: 0 0;
    border: 4px solid black;
}

.container-fluid {
    height: 100%;
    display: table;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    border: 4px solid blue;
}

.row-fluid {
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    width: 100%;

    border: 4px solid red;
}

.centering {
    float: none;
    margin: 0 auto;
}

HTML,

<div class="container-fluid">
    <div class="row-fluid text-center">
        <div>
            <img src="images/xxx.jpg" class="img-responsive centering">
        </div>
    </div>
</div>

您可以在img上使用height: 100%vertical-align: top ,在元素上使用height: 100vh

 body, html { margin: 0; padding: 0; } div { display: inline-block; height: 100vh; width: 100%; text-align: center; } img { height: 100%; vertical-align: top; } 
 <div> <img src="http://placehold.it/400x850"> </div> 

用内置的.center-block of bootstrap替换.centering

然后添加一个新类.myimg

.myimg {
  margin: 0 auto;
  position: absolute;
  height:100%;
  top:0;
  bottom:0;
}

检查这个小提琴https://jsfiddle.net/wo2eysh8/3/

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM