How to make a progress bar

后端 未结 19 1487
失恋的感觉
失恋的感觉 2020-12-04 18:09

How would one go about making a progress bar in html/css/javascript. I don\'t really want to use Flash. Something along the lines of what can be found here: http://dustincur

相关标签:
19条回答
  • 2020-12-04 18:48

    You could use ProgressBar.js. No dependencies, easy API and supports major browsers.

    var line = new ProgressBar.Line('#container');
    line.animate(1);
    

    See more examples of usage in the demo page.

    0 讨论(0)
提交回复
热议问题