+ 9
What is the code to make animated progress bar ?
4 Respuestas
+ 3
I think you are looking for this type of code.
https://code.sololearn.com/WdmYM8DLFCmw/?ref=app
+ 2
You could get extremely helpful answers if you google that question... And you wouldn't have to wait for one of us to answer you
+ 1
isn't there a progress tag?
btw why did add cpp in tag?
+ 1
For a very basic progress bar:
<progress min="0" max="100" value="35"> </progress>
Max is what the progress is out of and 35 is how much is done. Feel free to change these to whatever suits you. To get it animated, you'll have to use the 'animate' and find something that suits you. I'm sure you'll be able to find out more on this using Google :)