image 自動調整大小
下面這段代碼將把image調整的height和width都適合制定大小。<img src="xxxx" border="0" onload="resizeimage(this,170,50);"/>
<script language='javascript'>
function resizeimage(img,maxHeight,maxWidth)
{
var w=img.width,h=img.height;
if (h>maxHeight)
{
img.height=maxHeight;
img.width=(maxHeight/h)*w;
w=img.width;
h=img.height;
}
if (w>maxWidth)
{
img.width=maxWidth;
img.height=(maxWidth/w)*h;
}
}
</script>
posted on 2007-08-14 19:50 lqx 閱讀(537) 評論(0) 編輯 收藏 所屬分類: xml