CSS圖片Img等比例縮放且居中顯示


常用來做圖片放大顯示的遮罩層imgScale

HTML

<div id="imgScale" >
      <img src="">
</div>

CSS

.imgScale{
    width: 670px; 
    height: 320px; 
    display: block; 
    position: relative;
}
.imgScale img{
    max-width: 100%;
    max-height: 100%;
    width:auto;
    height:auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%,-50%,0);
    -webkit-transform: translate3d(-50%,-50%,0);
}

效果圖


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM