码迷,mamicode.com
首页 > Web开发 > 详细

js进度条小事例

时间:2018-04-04 20:45:10      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:idt   col   20px   blog   nbsp   style   tin   rip   btn   

   
<style>
    #div1{width: 500px;height: 20px;border: 1px solid gray;}
    #div2{height: 20px;width: 0px;background:green;}
</style>

 

       
  <div id="div1"> <div id="div2"></div> </div> <span id="span1"></span> <input type="button" value="start" id="btnone"> <input type="button" value="end" id="btnend"> <script> var n=0 function move(){ n++; div2.style.width=n+"px"; if(n==500){ clearInterval(timer); } if (n>500) { n=0; } span1.innerHTML = (n/500*100).toFixed(2)+"%" }; var timer; btnone.onclick = function(){ clearInterval(timer); timer = setInterval(move,50); } btnend.onclick = function(){ clearInterval(timer); } </scirpt>

 

js进度条小事例

标签:idt   col   20px   blog   nbsp   style   tin   rip   btn   

原文地址:https://www.cnblogs.com/l8l8/p/8718292.html

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