当aa.jpg的高度的超过150的时候,如何把它的高度设定为100呢?
(注:因为根据程序需要,所以不能预先就就它的高度值给设好,以免图片变形嘛),大家帮帮忙看看啊
[CODE]
<html>
<head>
<title>图片大小测试</title>
<script language="javascript">
function Add_Click()
{
this.image_h.width++;
this.image_h.height++;
}
function Reduce_Click()
{
if(this.image_h.width>0&&this.image_h.height>0)
{
this.image_h.width--;
this.image_h.height--;
}
}
function Page_Load()
{
//如果图片高度大于或等于150
//则图片高度设定为100
//图片每隔10毫秒自动增加当高度大于2500时还原。
window.setTimeout("Page_Load()",10);
if(this.image_h.height>=2500)
{
this.image_h.height=100;
this.image_h.width=100;
alert(this.image_h.height);
}
this.image_h.height++;
this.image_h.width++;
}
</script>
</head>
<body onLoad="Page_Load();" >
<input type="button" title="放大图片" onClick=Add_Click(); name=Add value="+" ><input type="button" title="缩小图片" name=Reduce onClick=Reduce_Click(); value="-">
<img id=image_h src="aaa/asplogo1.gif" width=300 height=150 ></img>
</body>
</html>
[/CODE]
[此贴子已经被作者于2006-9-14 12:07:08编辑过]