进度条控件

来源:百度知道 编辑:UC知道 时间:2024/06/27 14:41:07
不需要显示完成百分之几,只体现程序正在运行的进度条用什么控件
就像Windows启动时的进度条,一圈一圈滚动的那种

progress bar控件

不知道你是CS还是BS程序!不过不管是CS还是BS,没必要使用控件,自己做一个就OK啦!呵呵~~

网页里用maquree左右移动一张等待图片说明等待中~~或着别的方法!多的是~~

CS里用时间控件,每过一秒输出一块,呵呵
=========下边是用JS做出来的!你可以参考一下:
<form name=loading>
<p align=center> <font color="#0066ff" size="2" face="Arial">载入中,请稍等...</font><br>
<input type=text name=chart size=46 style="font-family:Arial; font-weight:bolder; color:#0066ff; background-color:#fef4d9; padding:0px; border-style:none;">
<br>
<input type=text name=percent size=47 style="color:#0066ff; 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+"%"