js实例5进度条

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js实例5进度条相关的知识,希望对你有一定的参考价值。

<style type="text/css">
*{ margin:0px auto; padding:0px}
#kuang{ width:200px; height:10px; border:1px solid #60F;}
#jindu{ height:10px; background-color:#F03; float:left}
</style>
</head>

<body>

<br />

<div id="kuang">
<div id="jindu" style="width:0px"></div>
</div>

<script type="text/javascript">

window.setTimeout("jindu()",30);

//调一下进度前进1%
function jindu()
{
//获取进度div的宽度
var div = document.getElementById("jindu");

//获取到的是字符串"0px"
var str = div.style.width;

//处理字符串获取数字
var cd = str.substr(0,str.length-2);

//判断长度是否到最大值
if(cd<200)
{
//将长度转为整数加2
var cd = parseInt(cd)+2;

//让进度的DIV长度变为cd
div.style.width = cd+"px";

//调用自身
window.setTimeout("jindu()",30);
}
}


</script>

































以上是关于js实例5进度条的主要内容,如果未能解决你的问题,请参考以下文章

js相关小实例——进度条

VB如何实现进度条

前端扇形进度条怎么实现

uploadifive.js怎么去掉进度条

关于js或jquery进度条实现?

如何给progressbar圆形进度条设置颜色