<html>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″>
<title>逐渐变化的窗口程序</title>
<script language=”JavaScript”>
function windowslong(address,winName,features) {
windowschange=open(address,winName,features);
for (var x=1;x<=50;x++){
windowschange.resizeBy(2,0);
}
for (var x=1;x<=70;x++){
windowschange.resizeBy(0,1);
}
}
</script>
</head>
<body onload=”windowslong(’top.htm’,'jswindows’,'width=1,height=1′)” bgcolor=”#FFFFFF” >
<a href=”#” onClick=”windowslong(’top.htm’,'jswindows’,'width=1,height=1′)”>点击此处看看效果</a>
</html>