How to make a progress bar

后端 未结 19 1495
失恋的感觉
失恋的感觉 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.

提交回复
热议问题