当前位置:编程学习 > JS >>

一个带进度条的页面LOADING效果(基于JS)

不用多介绍了,一个页面LOADING……效果,如果网页没有加载完,它会显示进度条,进度条到头也就加载完了,会打开目标页面。
答案:<html>
<head>
<title>一个页面LOADING……</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0">
<table border=0 cellpadding=0 cellspacing=0 width="100%" height="100%">
<tr> 
<form name=loading>
<td align=center> 
<p><font color=gray>载入中,请稍候……</font></p>
<p> 
<input type=text name=chart size=46 style="font-family:Arial; 
font-weight:bolder; color:gray;
 background-color:white; padding:0px; border-style:none;">
<br>
<input type=text name=percent size=46 style="font-family:Arial; 
color:gray; text-align:center; 
border-width:medium; border-style:none;">
<script>var bar = 0 
var line = "||" 
var amount ="||" 
count() 
function count(){ 
bar= bar+2 
amount =amount + line 
document.loading.chart.value=amount 
document.loading.percent.value=bar+"%" 
if (bar<99) 
{setTimeout("count()",100);} 
else 
{window.location = "/";} 
}
</script>
</p>
</td>
</form>
</tr>
</table>
</body>
</html>

上一个:打开网页自动最大化的JavaScript代码
下一个:JavaScript打开网页就弹出Alert提示窗的代码

CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,