上下分.html

来自「javescript网页特效80个例子」· HTML 代码 · 共 69 行

HTML
69
字号
<html>
<head>
<title>窗口背景的张开效果</title>
<style>
<!--
.intro {
position:absolute;
left:0;
top:0;
background-color:green;  /*设置窗口的背景颜色*/
}
-->
</style>
</head>
<body>
<div id="i1" class="intro"> 
</div> 
<div id="i2" class="intro"> 
</div>
<script language="JavaScript"> 
var speed=40    //设置背景张开的速度 
var temp=new Array() 
var temp2=new Array() 
if (document.layers){ 
for (i=1;i<=2;i++){ 
temp[i]=eval("document.i"+i+".clip") 
temp2[i]=eval("document.i"+i) 
temp[i].width=window.innerWidth 
temp[i].height=window.innerHeight/2 
temp2[i].top=(i-1)*temp[i].height 
} 
} 
else if (document.all){ 
var clipbottom=document.body.offsetHeight/2,cliptop=0 
for (i=1;i<=2;i++){ 
temp[i]=eval("document.all.i"+i+".style") 
temp[i].width=document.body.clientWidth 
temp[i].height=document.body.offsetHeight/2 
temp[i].top=(i-1)*parseInt(temp[i].height) 
} 
} 

function openit(){ 
window.scrollTo(0,0) 
if (document.layers){ 
temp[1].bottom-=speed 
temp[2].top+=speed 
if (temp[1].bottom<=0) 
clearInterval(stopit) 
} 
else if (document.all){ 
clipbottom-=speed 
temp[1].clip="rect(0 auto+"+clipbottom+" 0)" 
cliptop+=speed 
temp[2].clip="rect("+cliptop+" auto auto)" 
if (clipbottom<=0) 
clearInterval(stopit) 
} 
} 
function gogo(){ 
stopit=setInterval("openit()",100) 
}
gogo()
</script>
<center>
看到效果了吗?
</center>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?