- Take care of your eyes, use dark theme for night and daily browsing. Play over 50 levels of box-jumping madness! Design and share your own levels. Save web content or screen capture directly to Google Drive. The entire page will be fading to dark, so you can watch the videos as if you were in the cinema.
- With Tenor, maker of GIF Keyboard, add popular Animated Loading Bar Gif animated GIFs to your conversations. Share the best GIFs now.
- As of AspUpload 3.1, the progress bar can be displayed on the same page as the upload form, as opposed to a pop-up window. This is made possible via the Ajax technology, and a new method of the ProgressManager object, XmlProgress. The Ajax-based progress bar is demonstrated by this Live Demo.
- Find GIFs with the latest and newest hashtags! Search, discover and share your favorite Loading Bar GIFs. The best GIFs are on GIPHY.
Basic Progress Bar
With Tenor, maker of GIF Keyboard, add popular Animated Gif Progress Bar animated GIFs to your conversations. Share the best GIFs now.
A progress bar can be used to show a user how far along he/she is in a process.
Bootstrap provides several types of progress bars.
A default progress bar in Bootstrap looks like this:
To create a default progress bar, add a .progress
class to a <div>
element:
Example
<div aria-valuenow='70'
aria-valuemin='0' aria-valuemax='100'>
<span>70% Complete</span>
</div>
</div>
Note: Progress bars are not supported in Internet Explorer 9 and earlier (because they use CSS3 transitions and animations to achieve some of their effects).
Note: To help improve accessibility for people using screen readers, you should include the aria-* attributes.
Progress Bar With Label
A progress bar with a label looks like this:
Remove the .sr-only
class from the progress bar to show a visible percentage:
Example
<div aria-valuenow='70'
aria-valuemin='0' aria-valuemax='100'>
70%
</div>
</div>
Colored Progress Bars
Contextual classes are used to provide 'meaning through colors'.
The contextual classes that can be used with progress bars are:
.progress-bar-success
.progress-bar-info
.progress-bar-warning
.progress-bar-danger
The following example shows how to create progress bars with the different contextual classes:
Example
<div aria-valuenow='40'
aria-valuemin='0' aria-valuemax='100'>
40% Complete (success)
</div>
</div>
<div>
<div aria-valuenow='50'
aria-valuemin='0' aria-valuemax='100'>
50% Complete (info)
</div>
</div>
<div>
<div aria-valuenow='60'
aria-valuemin='0' aria-valuemax='100'>
60% Complete (warning)
</div>
</div>
<div>
<div aria-valuenow='70'
aria-valuemin='0' aria-valuemax='100'>
70% Complete (danger)
</div>
</div>
Striped Progress Bars
Progress bars can also be striped:
Add class .progress-bar-striped
to add stripes to the progress bars:
Example
<div
aria-valuenow='40' aria-valuemin='0' aria-valuemax='100'>
40% Complete (success)
</div>
</div>
<div>
<div
aria-valuenow='50' aria-valuemin='0' aria-valuemax='100'>
50% Complete (info)
</div>
</div>
<div>
<div
aria-valuenow='60' aria-valuemin='0' aria-valuemax='100'>
60% Complete (warning)
</div>
</div>
<div>
<div
aria-valuenow='70' aria-valuemin='0' aria-valuemax='100'>
70% Complete (danger)
</div>
</div>
Animated Progress Bar
Add class .active
to animate the progress bar:
Example
<div
aria-valuenow='40' aria-valuemin='0' aria-valuemax='100'>
40%
</div>
</div>
Stacked Progress Bars
Progress bars can also be stacked:
Create a stacked progress bar by placing multiple bars into the same <div>
:
Example
<div>
Free Space
</div>
<div>
Warning
</div>
<div>
Danger
</div>
</div>
Contents
HTML Progress Bar: Main Tips
- Introduced in HTML5,
progress
element represents a certain ongoing task and might indicate its level of completion. - It works in a similar fashion to the HTML gauge.
- HTML progress bars can be determinate or indeterminate.
- The ending tag cannot be omitted.
- You can easily style the progress bar with Bootstrap.
Tracking HTML Progress
The progress
tags are used to specify an HTML progress bar:
Possible progress Tag Attributes
There are two optional attributes you can use with HTML5 progress bars: max
and value
.
The max
attribute specifies total work required by the task. It must have a positive value (the default value is 1):
The value
attribute specifies how much of the task is completed. It must have a positive value that does not exceed max
(or 1, if max
is not specified):
Determinate or Not?
In the example below, you can see two HTML5 progress bars:
50 Progress Bar Gif Free Download
The first one is determinate: it has the value
specified and therefore shows the level of completion of the task.
The second bar has no value
defined, which makes it indeterminate. That means it will only indicate that the action is still happening. However, it will not represent what part of it is completed and how much is still left to do.