Bootstrap progress bar animation
Boostrap progress bar is a nice component that comes in handy when loading async contents, large images or, for example, when rendering a complex google map.
But as is, it is quite useless if you want to implement a dynamic loader, which progress value changes over time. There are two major problems:
- when updating the value there is no animation, but just a jump to the new provided value;
- if the value updates are set immediately one after another, you ...