⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 progressbar.htm

📁 在线压缩和解压
💻 HTM
字号:
<script language="javascript"> 

function setPgb(pgbID, pgbValue) 
{ 
	if ( pgbValue <= 100 ) 
	{ 
		//debugger;
		if (lblObj = document.getElementById(pgbID+'_label')) 
		{ 
			lblObj.innerHTML = pgbValue + '%'; // change the label value 
		} 
		if ( pgbObj = document.getElementById(pgbID) ) 
		{ 
			var divChild = pgbObj.children[0]; 
			pgbObj.children[0].style.width = pgbValue + "%"; 
		} 
		window.status = "数据读取" + pgbValue + "%,请稍候..."; 
	} 
	if ( pgbValue == 100 ) 
	{
		window.status = "数据读取已经完成"; 
		proBar.style.display="none";
		Table1.style.display="none";
	}
} 

</script>
<html>
	<head>
		<link rel="stylesheet" type="text/css" href="common.css" />
	</head>
	<body topmargin="0" leftmargin="0">
		<table width="100%" height="100%" ID="Table1" runat=server>
			<tr>
				<td align="center" valign="middle">
					<DIV class="bi-loading-status" id="proBar" style="DISPLAY: ; LEFT: 425px; TOP: 278px">
						<DIV class="text" id="pgbMain_label" align="left"></DIV>
						<DIV class="progress-bar" id="pgbMain" align="left">
							<DIV STYLE="WIDTH:10%"></DIV>
						</DIV>
					</DIV>
				</td>
			</tr>
		</table>
	</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -