目标是在缩放图像时保持纵横比,并使其在仅由百分比定义的DIV内垂直和水平居中。图像需要保持最佳匹配,因此如果需要最大宽度,则使用它,反之亦然。
使用 Firefox 33版(或一些早期版本)查看此js小提琴,看它是否正常工作:
http://jsfiddle.net/3vr9v2fL/1/
HTML:
<div id="imageviewer" >
<div class="dummy"></div>
<div class="img-container centerer" id="imagevieweroriginal">
<img class="centered" src="http://chrisnuzzaco.com/couch/uploads/image/gallery/smiling_woman_wearing_drivers_cap.jpg" alt="Doctor Concentrating on Work"></img>
</div>
</div>
</div>
CSS:
#imagewrapper{
position:absolute;
width:69%;
height:100%;
top:0px;
bottom:0px;
background-color:gray;
}
#imageviewer{
position:relative;
width:100%;
height:100%;
}
.responsive-container {
position: relative;
width: 100%;
border: 1px solid black;
}
.dummy {
padding-top: 100%; /* forces 1:1 aspect ratio */
}
.img-container {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.centerer {
text-align:center; /* Align center inline elements */
font: 0/0 a; /* Hide the characters like spaces */
}
.centerer:before {
content: ' ';
display: inline-block;
vertical-align: middle;
height: 100%;
}
.centered {
vertical-align: middle;
display: inline-block;
max-height: 100%;
max-width: 100%;
}
问题:
我最初在stackoverflow上找到了我的代码,并将一个简单的mod添加到.centered类的max-height / width。当时,这适用于所有主流浏览器。唯一的例外是Opera。
Vertically align an image inside a div with responsive height
但是有一个很大的问题:最新版本的Chrome(版本38.0.2125.111)不再适用于此代码,而且我的用户更喜欢使用Chrome浏览器,而不是其他浏览器。
关于如何解决这个问题的任何想法?这是Chrome的错误吗?我对javascript建议持开放态度,让我的工作重新开始。
答案 0 :(得分:6)
我想出了这个:JSFiddle - centered image keeps aspect ratio in resizable fluid container
.container {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
}
.image {
position: absolute;
max-width: 100%;
max-height: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
body {
width: 100%;
height: 100%;
position: absolute;
margin: 0;
}
&#13;
<div class='container'>
<img class='image' src='http://imgsv.imaging.nikon.com/lineup/lens/zoom/normalzoom/af-s_dx_18-140mmf_35-56g_ed_vr/img/sample/sample1_l.jpg'>
</div>
&#13;
图像水平和垂直居中。如果按比例缩小窗口,则图像会缩小原始宽高比。
我没有在所有浏览器上测试它。
答案 1 :(得分:1)