本文實例講述了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語言程式設計有所幫助。