Hey! How's it going?
Not bad... i guess. What about you? Haven't gotten any updates from you in a long time.
Yeah! I've been a bit busy lately. I'll get back to you soon enough.
Alright, take care then.
Provide up-to-date feedback on the progress of a workflow or action with simple yet flexible progress bars.
Default progress bars are simple and css driven.
Primary with progress-bar-primary
class.
Info with progress-bar-info
class.
Success with progress-bar-success
class.
Warning with progress-bar-warning
class.
Danger with progress-bar-danger
class.
Inverse with progress-bar-inverse
class.
<div class="progress"> <div class="progress-bar progress-bar-primary" style="width: 20%"></div> </div>
Sriped Progress bars made with CSS3 gradients, just add the progress-striped
class
Note Does not work with browsers that do not support CSS3 gradients or animations, like IE9
Info
Animated progressbars with CSS3, just add a class active
with progress-striped
Inverse
You can stack one progressbar on top of another simply by including them all in the same div.progress
Have thinner progress bars with details.
<div class="contextual-progress"> <div class="clearfix"> <div class="progress-title">Task #1</div> <div class="progress-percentage">25%</div> </div> <div class="progress"> <div class="progress-bar progress-bar-info" style="width: 25%"></div> </div> </div>