本文实例讲述了js实现绿白相间竖向网页百叶窗动画切换效果。分享给大家供大家参考。具体分析如下: 前面我们讲解了一个网页百叶窗切换动画效果,不过是横向百叶窗,这个是竖向百叶窗,代码基本一样: 复制代码 代码如下: 百叶窗页面切换效果 <br /> <!--<br /> .intro{<br /> position:absolute;<br /> left:0;<br /> top:0;<br /> layer-background-color:green;<br /> background-color:green;<br /> border:0.1px solid green<br /> }<br /> --><br /> class="intro"> id="i6" class="intro"> <br /> var speed=20<br /> var temp=new Array()<br /> var temp2=new Array()<br /> if (document.layers){<br /> for (i=1;i<=8;i++){<br /> temp[i]=eval("document.i"+i+".clip")<br /> temp2[i]=eval("document.i"+i)<br /> temp[i].width=window.innerWidth/8-0.3<br /> temp[i].height=window.innerHeight<br /> temp2[i].left=(i-1)*temp[i].width<br /> }<br /> }<br /> else if (document.all){<br /> var clipbottom=document.body.offsetHeight,cliptop=0<br /> for (i=1;i<=8;i++){<br /> temp[i]=eval("document.all.i"+i+".style")<br /> temp[i].width=document.body.clientWidth/8<br /> temp[i].height=document.body.offsetHeight<br /> temp[i].left=(i-1)*parseInt(temp[i].width)<br /> }<br /> }<br /> function openit(){<br /> window.scrollTo(0,0)<br /> if (document.layers){<br /> for (i=1;i<=8;i=i+2)<br /> temp[i].bottom-=speed<br /> for (i=2;i<=8;i=i+2)<br /> temp[i].top+=speed<br /> if (temp[2].top>window.innerHeight)<br /> clearInterval(stopit)<br /> }<br /> else if (document.all){<br /> clipbottom-=speed<br /> for (i=1;i<=8;i=i+2){<br /> temp[i].clip="rect(0 auto+"+clipbottom+" 0)"<br /> }<br /> cliptop+=speed<br /> for (i=2;i<=8;i=i+2){<br /> temp[i].clip="rect("+cliptop+" auto auto)"<br /> }<br /> if (clipbottom<=0)<br /> clearInterval(stopit)<br /> }<br /> }<br /> function gogo(){<br /> stopit=setInterval("openit()",100)<br /> }<br /> gogo()<br /> 希望本文所述对大家的javascript程序设计有所帮助。