打印

[交流] 页面特效JS特效:页面左右分开

0

页面特效JS特效:页面左右分开

<html>
<head>
<title>页面左右分开</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style>
<!--
.intro{
position:absolute;
left:0;
top:0;
layer-background-color:red;
background-color:red;
border:0.1px solid red
}
.pt9 {  font-family: "宋体"; font-size: 9pt; text-decoration: none}
body { font-family: "宋体"; font-size: 9pt; text-decoration: none ; margin-top: 0px}
-->
</style>
</head>

<body bgcolor="#000000">
<div id="i1" class="intro"></div><div id="i2" class="intro"></div><script
language="JavaScript1.2">

/*
Left-Right Curtain Script-
?Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more free DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/

var speed=20
var temp=new Array()
var temp2=new Array()
if (document.layers){
for (i=1;i<=2;i++){
temp=eval("document.i"+i+".clip")
temp2=eval("document.i"+i)
temp.width=window.innerWidth/2
temp.height=window.innerHeight
temp2.left=(i-1)*temp.width
}
}
else if (document.all){
var clipright=document.body.clientWidth/2,clipleft=0
for (i=1;i<=2;i++){
temp=eval("document.all.i"+i+".style")
temp.width=document.body.clientWidth/2
temp.height=document.body.offsetHeight
temp.left=(i-1)*parseInt(temp.width)
}
}


function openit(){
window.scrollTo(0,0)
if (document.layers){
temp[1].right-=speed
temp[2].left+=speed
if (temp[2].left>window.innerWidth/2)
clearInterval(stopit)
}
else if (document.all){
clipright-=speed
temp[1].clip="rect(0 "+clipright+" auto 0)"
clipleft+=speed
temp[2].clip="rect(0 auto auto "+clipleft+")"
if (clipright<=0)
clearInterval(stopit)
}
}

function gogo(){
stopit=setInterval("openit()",100)
}
gogo()

</script>
</body>
</html>

TOP

当前时区 GMT+8, 现在时间是 2025-3-19 16:34