|
|
| 自由变化大小的图片 |
| 整理:Cnwshow.Com 来源:Internet 整理时间:2008-6-19 |
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>自由变化大小的图片</title>
</head>
<body>
<img src="shower_03.jpg" name="u" border="1" alt="大小变化哦">
<script language="JavaScript">
var b = 1;
var c = true;
function butong_net(){
if(document.all);
if(c == true) {
b++;
}
if(b==100) {
b--;
c = false
}
if(b==10) {
b++;
c = true;
}
if(c == false) {
b--;
}
u.width=150 + b;
u.height=125 - b;
setTimeout("butong_net()",50);
}
butong_net();
</script>
</body>
</html>
|
|
|
|
|
|