码迷,mamicode.com
首页 > 其他好文 > 详细

进度条

时间:2019-12-06 17:41:23      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:ack   点击   on()   set   停止   cti   add   fun   var   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ProgressBar</title>
<style>
*{
margin: 0;
padding: 0;
}
#progress{
width: 100%;
height: 30px;
background: rgb(42, 138, 248);
}
#bar{
width: 1%;
height: 28px;
margin-top: 1px;
background: purple;
}

</style>
 
</head>
<body>
<div id="progress">
<div id="bar"></div>
</div>
<div><h3 id="text-progress">0%</h3></div>
<input type="button" id=“btn” value="点击开始" onclick="action()">
</body>
<script>
function action(){
var iSpeed=1;
obj=setInterval(function(){
iSpeed+=1;
if(iSpeed>=100){ // 设置达到多少进度后停止
clearInterval(obj);
}
bar.style.width=iSpeed+‘%‘;
document.getElementById(‘text-progress‘).innerHTML=iSpeed+‘%‘;

},100); // 1s后函数执行一次
}
</script>
</html>

进度条

标签:ack   点击   on()   set   停止   cti   add   fun   var   

原文地址:https://www.cnblogs.com/niuzijie/p/11996619.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!