lqxue

常用链接

统计

book

tools

最新评论

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 阅读(482) 评论(0)  编辑  收藏 所属分类: xml


只有注册用户登录后才能发表评论。


网站导航: