图片自适应代码

2024年05月03日 图片 自适应 代码 script type text 懒猪技术

<script type="text/javascript">

//图片自适应

$(function () {

var imglist = document.getElementsByTagName("img");

// $("img").attr(&#039;style&#039;, &#039;&#039;);

//安卓4.0+等高版本不支持window.screen.width,安卓2.3.3系统支持

var _width;

doDraw();

window.onresize = function () {

//捕捉屏幕窗口变化,始终保证图片根据屏幕宽度合理显示

doDraw();

}

function doDraw() {

_width = window.innerWidth;//屏幕宽度

for (var i = 0, len = imglist.length; i < len; i++) {

DrawImage(imglist[i], _width);

}

}

function DrawImage(ImgD, _width) {

var image = new Image();

image.src = ImgD.src;

image.onload = function () {

//限制,只对宽高都大于192的图片做显示处理,换成你想要的宽度。

if (image.width <1920 && image.height <1920) {

if (image.width > _width) {

ImgD.style.width = "";

ImgD.style.height = "";

ImgD.width = _width/1.1;

ImgD.height = (image.height * _width) / image.width;

} else {

ImgD.style.width = "";

ImgD.style.height = "";

ImgD.width = image.width;

ImgD.height = image.height;

}

}

}

}

})

</script>

本文链接:http://so.lmcjl.com/news/3680/

展开阅读全文
相关内容