当前位置: 首页 > 图文教程 > 网络编程 > Javascript > [全兼容哦]--实用、简洁、炫酷的页面转入效果loing

Javascript
js一组验证函数
JavaScript 字符串连接性能优化
JavaScript CSS 菜单功能代码
jQuery 各种浏览器下获得日期区别
清除网页历史记录,屏蔽后退按钮!
关于IE7 IE8弹出窗口顶上
javascript StringBuilder类实现
通过event对象的fromElement属性解决热区设置主实体的一个bug
Javascript 布尔型分析
javascript 动态参数判空操作
js 解决“options为空或不是对象”
javascript 语法学习练习
javascript 硬盘序列号+其它硬件信息
window.location和document.location的区别分析
javascript XML数据显示为HTML一例
HTML与javascript常碰到的编码问题
javascript 时间对象的练习
JavaScript 事件参考手册
javascript prototype,executing,context,closure
javascript 网页跳转的方法

Javascript 中的 [全兼容哦]--实用、简洁、炫酷的页面转入效果loing


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-12   浏览: 275 ::
收藏到网摘: n/a

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta HTTP-EQUIV="Expires" content="Sun, 31 Oct 2008 23:59:00 GMT" />
<title>实用、结、酷的页面转入效果loing ---全兼容【来自心动】</title>
<style type="text/css">
<!--
body {
margin-top: 100px;
font-size: 12px;
color: #006600;
}
#span{
background-color: #FFFFFF;
height: 4px;
width: 4px;
border: 1px solid #333333;
margin: 1px;
}
-->
</style></head>
<body>
<div align="center">页面载入中请稍候···<br />
<script language="JavaScript" type="text/javascript">
var p=0,A1=0;var u_=0
var color_A=new Array("lightskyblue","white","#00FF00","white","red","white");
function set_span(obj_name,obj_time,obj_length){
for(var i=0;i<obj_length;i++){document.write("<input id='"+obj_name+"' name='"+obj_name+"' />")}
setInterval('xd_load();',obj_time);
}
function xd_load(){
u_++
document.getElementsByName("span").item(p).style.background=color_A[A1]
p+=1;
if(p==document.getElementsByName("span").length){p=0;A1+=1;
if(A1==color_A.length)A1=0
}
if(u_>20){top.location="../";alert("转入页面");}
}
set_span("span",120,20)
</script></div>
</body>
</html>