自动调节img宽度的脚本
fromMic's blog
在smth web bbs的代码中发现这段脚本,觉得还挺有用的,能让img不再撑开页面:
html:
js:
var bbsconImg = new Array();
function resizeImg(obj) {
bbsconImg.push(obj);
obj.o_width = obj.width;
var maxWidth = document.body.clientWidth - 40;
if (obj.width > maxWidth) obj.width = maxWidth;
}
function adjustImg() {
var maxWidth = document.body.clientWidth - 40;
for (var i in bbsconImg) {
var obj = bbsconImg[i];
var o_width = obj.o_width;
obj.width = (o_width > maxWidth) ? maxWidth : o_width;
}
}
window.onresize = adjustImg;