进度条,并显示进度百分比
Posted ngdty
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了进度条,并显示进度百分比相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
*{margin:0;padding:0;}
#parent{
width: 300px;
height: 40px;
border: 1px solid #ccc;
border-radius: 20px;
margin: 30px auto;
}
#child{
width: 0;
height: 40px;
border-radius: 20px;
background: red;
}
#bfb{width: 50px;
margin: 0 auto;
font-size: 30px;
}
</style>
</head>
<body>
<div id="parent">
<div id="child">
</div>
</div>
<div id="bfb">
</div>
</body>
</html>
<script>
var parent = document.getElementById("parent");
var child = document.getElementById("child");
var timer = null;
//加上百分比
timer = setInterval(function(){
var speed = parseInt(Math.random()*4);
if(child.offsetWidth>parent.offsetWidth){
clearInterval(timer)
}else{
child.style.width = child.offsetWidth+speed+"px";
}
var n = (child.offsetWidth/parent.offsetWidth)>1?1:(child.offsetWidth/parent.offsetWidth); //n为加载的宽度占总宽度的比
document.getElementById("bfb").innerText=parseInt(n*100)+"%";
},30)
</script>
以上是关于进度条,并显示进度百分比的主要内容,如果未能解决你的问题,请参考以下文章
Android自定义控件实现带百分比显示进度条,可自定义颜色
JAVAFX ProgressBar ,如何让进度条上显示百分比啊,而且是缓慢的递增的那种