2012-11-03 来源:网络
【实例名称】
JS代码实现窗口慢慢变大
【实例描述】
窗口打开时可以使用一些特效,如卷帘式、默认最大化等。本例通过window.resizeTo方法实现创建窗口逐渐变大的效果。
【实例代码】
<html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>标题页-学无忧(www.xue51.com)</title> <script language="javascript"> var Windowsheight=100; var Windowswidth=100; var numx=5; function openwindow(thelocation){ temploc=thelocation; if (!(window.resizeTo&&document.all)&&! (window.resizeTo&&document.getElementById)) { window.open(thelocation); //打开新窗口 return ; } windowsize=window.open("","","scrollbars"); windowsize.moveTo(0,0); //移动窗口到0,0坐标处 windowsize.resizeTo(100,100); //改变窗口大小 tenumxt(); } function tenumxt(){ if (Windowsheight>=screen.availHeight-3) //高度超过窗体最大高度时 numx=0 ; windowsize.resizeBy(5,numx); Windowsheight+=5; //高度逐次加5 Windowswidth+=5; //宽度逐次加5 if (Windowswidth>=screen.width-5) { //宽度超过窗体最大宽度时 windowsize.location=temploc Windowsheight=100 Windowswidth=100 numx=5 return } setTimeout("tenumxt()",50) //通过计时器,逐渐变大窗口 } </script>
</head> <body> <a href="javascript:openwindow('http://www.google.com')">进入搜索</a> </body> </html>
【运行效果】
【难点剖析】
本例的重点是window对象的方法:“mOveTo”和“resizeTo”。“moveTo”表示移动窗口到指定位置,其包含两个参数,分别代表目标点的x和y坐标。“resizeTo”表示改变窗口的大小,其包含两个参数,分别代表窗口的高度和宽度。
【源码下载】
为了JS代码的准确性,请点击:慢慢变大的窗口 进行本实例源码下载