發(fā)表日期:2019-09 文章編輯:小燈 瀏覽次數(shù):29788
我的另一網站 CODE大全,使用的 bootstrap 搭建的。但是對于博客中引入的圖片總是不能隨著移動端的適配進行友好的展示。今天查閱了一些相關資料,進行了優(yōu)化,在這里做個總結!
做法很簡單,只要設置對應圖片的width和htight的具體數(shù)值就可以了??聪旅娴睦樱?/p>
img{ width:auto; height:auto; max-width:100%; max-height:100%;}
這樣設置圖片的話,可以使圖片在指定的空間內縮放。4行的意思是:
max-width 和 max-height,優(yōu)先對max-width進行縮放,當圖片在max-width縮放后的尺寸仍然超出容器大小時。max-height就發(fā)揮了作用:對圖片再次進行縮放!舉例:
<div style="width:50px;height:40px"><img src="a.jpg"><!--這里我們假如圖片的實際尺寸是320X320--></div>
圖片被縮放后在div的尺寸是:
width:50px;(因為圖片的width:100%)
height:50px(這里height是有width:100%被縮放后的尺寸。)
我們可以發(fā)現(xiàn)這個50px的高度仍然超出了div的40px的高度,不符合max-height
這個時候,max-height:100%;就會發(fā)揮作用,
在max-height:100%;的作用下,圖片被縮放后在div的尺寸是:
width:40px;
height:40px;
這個尺寸符合max-height和max-width
所以,當div在不斷變化時,圖片在div中也會跟著布斷發(fā)生變化,
這里不介意給圖片設置width:100%;height:100%;會造成圖片變形。
<!DOCTYPE html><html><head><meta charset="utf-8"><title></title><style>img{width: auto;height:auto;max-height: 100%;max-width: 100%;}</style></head><body><div id="div" style="width: 50px;height: 50px;"><img src="../5100036_080649087294_2.jpg" /></div><script>window.onload=function(){setInterval(function(){move();},1000);} function move(){var _width=document.getElementById('div').style.width.replace('px','');if(parseInt(_width)>400){document.getElementById('div').style.width=parseInt(_width)-5+'px';document.getElementById('div').style.height=parseInt(_width)-5+'px';}else{document.getElementById('div').style.width=parseInt(_width)+5+'px';document.getElementById('div').style.height=parseInt(_width)+5+'px';}}</script></body></html>
日期:2019-09 瀏覽次數(shù):6833
日期:2019-09 瀏覽次數(shù):4701
日期:2019-09 瀏覽次數(shù):5513
日期:2019-09 瀏覽次數(shù):10743
日期:2019-09 瀏覽次數(shù):10782
日期:2019-09 瀏覽次數(shù):4491
日期:2019-09 瀏覽次數(shù):4079
日期:2019-09 瀏覽次數(shù):3896
日期:2019-09 瀏覽次數(shù):3463
日期:2019-09 瀏覽次數(shù):4200
日期:2019-09 瀏覽次數(shù):7920
日期:2019-09 瀏覽次數(shù):3730
日期:2019-09 瀏覽次數(shù):4248
日期:2019-09 瀏覽次數(shù):3747
日期:2019-09 瀏覽次數(shù):3893
日期:2019-09 瀏覽次數(shù):4181
日期:2019-09 瀏覽次數(shù):5761
日期:2019-09 瀏覽次數(shù):3447
日期:2019-09 瀏覽次數(shù):4493
日期:2019-09 瀏覽次數(shù):3947
日期:2019-09 瀏覽次數(shù):4188
日期:2019-09 瀏覽次數(shù):4228
日期:2019-09 瀏覽次數(shù):3557
日期:2019-09 瀏覽次數(shù):4380
日期:2019-09 瀏覽次數(shù):5490
日期:2019-09 瀏覽次數(shù):5334
日期:2019-09 瀏覽次數(shù):3634
日期:2019-09 瀏覽次數(shù):8998
日期:2019-09 瀏覽次數(shù):4586
日期:2019-09 瀏覽次數(shù):3930
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.