|
|
| 点击动态展开图片 |
| 整理:Cnwshow.Com 来源:Internet 整理时间:2008-8-22 |
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>点击动态展开图片</title>
</head>
<body>
<script language="JavaScript">
var b = 0;
var c = true;
function fade(){
if(document.all);
if(c == true) {
b+=50;
}
if(b == 300) {
c = false;
}
u.width= 300;
u.height=b; //运行后图片的大小为300*300
setTimeout("fade()",0.5); //根据实际情况选择延时
}
</script>
<a href="#"><img src="04.jpg" name="u" width=0 height=0 border=0></a>
<a href="#" onClick="fade()">点些将显示图片(可以添加链接)</a>
</body>
</html>
|
|
|
|
|
|