本文实例讲述了js实现从中间开始往上下展开网页窗口的方法。分享给大家供大家参考。具体分析如下: 这个是从中间然后慢慢向上下展开的页面显示效果,也还不错,代码如下: 复制代码 代码如下: js从中间展开的网页窗口显示 <br /> <!--<br /> .intro{<br /> position:absolute;<br /> left:0;<br /> top:0;<br /> layer-background-color:yellow;<br /> background-color:#336699;<br /> border:0.1px solid #336699<br /> }<br /> --><br /> <br /> var speed=20<br /> var temp=new Array()<br /> var temp2=new Array()<br /> if (document.layers){<br /> for (i=1;i<=2;i++){<br /> temp[i]=eval("document.i"+i+".clip")<br /> temp2[i]=eval("document.i"+i)<br /> temp[i].width=window.innerWidth<br /> temp[i].height=window.innerHeight/2<br /> temp2[i].top=(i-1)*temp[i].height<br /> }<br /> }<br /> else if (document.all){<br /> var clipbottom=document.body.offsetHeight/2,cliptop=0<br /> for (i=1;i<=2;i++){<br /> temp[i]=eval("document.all.i"+i+".style")<br /> temp[i].width=document.body.clientWidth<br /> temp[i].height=document.body.offsetHeight/2<br /> temp[i].top=(i-1)*parseInt(temp[i].height)<br /> }<br /> }<br /> function openit(){<br /> window.scrollTo(0,0)<br /> if (document.layers){<br /> temp[1].bottom-=speed<br /> temp[2].top+=speed<br /> if (temp[1].bottom<=0)<br /> clearInterval(stopit)<br /> }<br /> else if (document.all){<br /> clipbottom-=speed<br /> temp[1].clip="rect(0 auto+"+clipbottom+" 0)"<br /> cliptop+=speed<br /> temp[2].clip="rect("+cliptop+" auto auto)"<br /> if (clipbottom<=0)<br /> clearInterval(stopit)<br /> }<br /> }<br /> function gogo(){<br /> stopit=setInterval("openit()",100)<br /> }<br /> gogo()<br /> 希望本文所述对大家的Go语言程序设计有所帮助。