js进度条小事例

Posted 悔创阿里-杰克马

tags:

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

   
<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进度条小事例的主要内容,如果未能解决你的问题,请参考以下文章

Linux | 手把手教你写一个进度条小程序

<Linux>进度条小程序和git使用详解

Linux下的进度条小程序

Linux下实现进度条小程序

Linux篇第四篇——Linux环境下的工具(make/Makefile+进度条小程序)

如何在 android 中创建进度条而不使用 xml 文件中的进度条小部件?