寻找仅限CSS的解决方案,以便在保留纵横比但适合父容器的同时进行缩放。图片不应该延伸到父母之外。
参考演示,前两个工作,而最后一个是错误地倾斜它。
https://jsfiddle.net/louiswalch/os6ehsjx/
HTML:
<div class="container">
<p>Exact</p>
<img src="http://dummyimage.com/600x400/000/fff"/>
</div>
<div class="container">
<p>Fit to width</p>
<img src="http://dummyimage.com/600x200/000/fff"/>
</div>
<div class="container">
<p>Fit to height</p>
<img src="http://dummyimage.com/200x600/000/fff"/>
</div>
CSS:
.container {
background-color: pink;
margin-bottom: 20px;
height: 0;
padding-top: 66.6%; /* (H/W) * 100 */
overflow: hidden;
position: relative;
}
.container IMG {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: auto;
max-width: 100%;
max-height: 100%;
}
.container P {
z-index: 2;
color: white;
position: absolute;
top: 10px;
left: 10px;
font-family: sans-serif;
font-size: 11px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 0.8px;
}
答案 0 :(得分:1)
虽然不耐烦地等待所有主要浏览器供应商实施CSS属性object-fit
....
而不是img
使用div
<div class="bg" style="background-image: url('//placehold.it/800x600');"></div>
然后在CSS中:
.bg{
position:absolute;
top:0; left:0; right:0; buttom:0;
background: none 50%;
background-size: contain; /* ur use: cover to cover the entire space*/
}
答案 1 :(得分:0)
这是我使用的。我将图像放入base64图像的背景中(因此它验证了)。
<img class="thumb" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" style="background-image: url('http://your.com/image.jpg')">
这是css
.thumb{
width:345px;
height:260px;
background:center;
background-size:cover;
}