本文目录一览

1,WEB真实的进度条如何实现

我提供一个思路,用一个变量A记录发了多少封,你每发完一封 就用A/500可以得到一个百分比,绑到UpdateProgress就可以了
给你看个实例,这是我用来上传相片的,有每个相片的进度和总的进度,使用flash,javascript,服务端用什么不影响http://fancyupload.hualiuliu.com
告诉你一个笨的方法,用ajax,界面上放置两个层、label等等都行,两个层重叠在一起,后台实时改变最上面的层的宽度,这样看上去和进度条的效果差不多了

WEB真实的进度条如何实现

2,如何制作网页载入的进度条

<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>Loading</title></head><body><form name="loading"><p align="center">正在跳转,请稍后...</p><p align="center"><input type="text" name="bar" style="border-style:none; background-color:#D3E8D0; font-weight:bold" /><input type="text" name="percentage"style="border-style:none; background-color:#FFFFFF; max-width:30px"/></p><p align="center">如果您的浏览器不支持跳转,请点击<a href="http://www.126.com">这里</a>手动跳转</p><script language="javascript" type="text/javascript"> var percent=0; //百分比进度,显示在滚动条后面var element="||"; //滚动条单元竖线var elements="||"; //滚动条当前竖线count(); //开始调用循环function count() percent=percent+10; //每次百分比加10 elements =elements + element; //滚动条当前竖线增加一个滚动条单元竖线 document.loading.bar.value=elements; //设置窗体loading表单中bar元素的当前值 document.loading.percentage.value=percent+"%"; //设置窗体loading表单中percentage元素的当前值 if (percent<99) setTimeout("count()",500); //每500ms进行一次count() } else window.location = "http://www.126.com"; //percent达到100时跳转 } }</script></form></body></html>

如何制作网页载入的进度条


文章TAG:网页  进度  进度条  怎么  网页进度条怎么实现  
下一篇