<头>
无标题标题>
.testCss{宽度:200px;高度:300px;边框:1px 红色实心;text-align:中心;显示:块;}
.testCss1{宽度:300px;高度:300px;边框:1px 红色实心;text-align:center;display:block;}
.testCss2{width:400px;height:300px;border:1px redsolid;text-align:center;display:block;}
;
function autoSizeImg(Contents,offsetWidth,offsetHeight,vlmiddle){
var o=Contents.getElementsByTagName("IMG");
var cwidth= window.getCompulatedStyle?window.getCompulatedStyle(Contents,null).width:Contents.currentStyle["width"];
var cheight=window.getCompulatedStyle?window.getCompulatedStyle(Contents,null).height:Contents.currentStyle["height"];
var ncwidth=parseInt(cwidth);
var ncheight=parseInt(cheight);
for(var i=0;i
var img=o[i];
var iw=img.width;
var ih=img.height;
if(img.width>ncwidth){
var nw=ncwidth-offsetWidth;
img.width=nw
img.height=(nw*ih)/iw;
}else if(img.widthncheight){
var nh=ncheight-offsetHeight;
img.height=nh;
img.width=(nh*iw)/ih;
}
if(img.height>ncheight&&img.widthvar hh=ncheight-offsetHeight;
img.height=nh;
img.width=(nh*iw)/ih;
}
if(vlmiddle)img.style.marginTop=((ncheight-img.height)/2) "px";
}
}
脚本>
头>
<身体>
;
身体>