CSS — Progress bar 4

: The Progress Indicator element

The HTML element displays an indicator showing the completion progress of a task, typically displayed as a progress bar.

Try it

Content categories Flow content, phrasing content, labelable content, palpable content.
Permitted content Phrasing content, but there must be no element among its descendants.
Tag omission None, both the starting and ending tag are mandatory.
Permitted parents Any element that accepts phrasing content.
Implicit ARIA role progressbar
Permitted ARIA roles No role permitted
DOM interface HTMLProgressElement

Attributes

This element includes the global attributes.

This attribute describes how much work the task indicated by the progress element requires. The max attribute, if present, must have a value greater than 0 and be a valid floating point number. The default value is 1 .

This attribute specifies how much of the task that has been completed. It must be a valid floating point number between 0 and max , or between 0 and 1 if max is omitted. If there is no value attribute, the progress bar is indeterminate; this indicates that an activity is ongoing with no indication of how long it is expected to take.

Читайте также:  Android app development masterclass using kotlin

Note: The :indeterminate pseudo-class can be used to match against indeterminate progress bars. To change the progress bar to indeterminate after giving it a value you must remove the value attribute with element.removeAttribute(‘value’) .

Examples

progress value="70" max="100">70 %progress> 

Источник

10 Different CSS Progress Bar

CSS Progress bar is used to show the progress of some ongoing task. They are used on websites to show the progress of a download, upload, or some other process like a game level, etc.

It creates a visual cue for the user that something is happening in the background and keeps them engaged.

Adding a progress bar to your website or projects will improve the user experience and make your website more interactive.

You can use all progress bars discussed in this article in your projects for free.🥳

CSS progress bar

1. Simple Progress Bar

To start with let’s choose the simplest progress bar. It is a simple horizontal bar with a colored background.

Create a element and add a class progress to it.

Set the width of the progress bar to 40% (you can change it to any value you want).

Now style it to look like a progress bar. Set its height to 20px, and add some background color and border radius.

2. CSS Progress Bar with Background

The above progress bar doesn’t look that great, since we made it very simple. Let’s add some background to it and make it look more attractive.

To add a nice background behind the progress bar we need to change both CSS and HTML.

First nest above inside another and add a class progress-container to it. We will add background to this element.

Now add some background color to the progress-container and set its height the same as the progress bar. (Setting height is optional, but it will make the progress bar look more attractive).

Also, add some border radius to the progress-container to make it look more rounded.

.progress-container < height: 20px; background-color: #ddd; border-radius: 10px; >.progress

3. CSS Progress Bar with Text

When you look at both of the above progress bars you will feel like something is missing🤔. And when you look at it closely🧐 you will realize that it is the progress percentage.

Progress percentage gives us an instant idea of the progress and it’s must to have one in your progress bar.

To create a progress bar with text we are going to have the same HTML code as above but we will add some text inside the progress element.

In styling, we can add some text color, font size, and alignment to make it look beautiful.

.progress-container < height: 20px; background-color: #ddd; border-radius: 10px; >.progress

4. CSS Progress Bar Animation

Now that we have a progress bar with text, let’s add some animation to it.

For animation, we will use CSS3 Animation. We will add a transition property to the width property of the progress element.

There is little change in HTML and CSS code. In HTML add data-progress attribute to the progress element and set its value to the progress percentage. In CSS add the transition property to the width property.

Finally, apply JavaScript to the progress element to set its width to the value of data-progress attribute.

Here is the complete code.

     .progress-container < height: 20px; background-color: #ddd; border-radius: 10px; >.progress 

Progress bar with nice animation using HTML, CSS and JavaScript

Click on the progress bar to see the animation

0%

Click on the progress bar to see the animation.

5. Progress Bar with Multiple Steps

Now we will create a progress bar with multiple steps. We will add the next button to the progress bar. When the user clicks on the next button, the progress bar will move to the next step.

For this, we will add a data-step attribute to the progress element. The value of the data-step attribute will be the percentage of the progress bar.

Here is the complete code.

     .progress-container < height: 20px; background-color: #ddd; border-radius: 10px; >.progress < height: 20px; border-radius: 10px; background-color: #4CAF50; color: white; font-weight: bold; text-align: center; transition: all 1s ease; width: 0; >.next < background-color: #6980e4; border: none; border-radius: 0.25rem; color: white; padding: 10px 25px; display: block; font-size: 16px; margin: 10px auto; cursor: pointer; >.next:hover 

Progress bar with multiple steps

Click on the next button to see the animation

0%
var progressContainer = document.querySelector('.progress-container'); var progress = document.querySelector('.progress'); var next = document.querySelector('.next'); var steps = progress.getAttribute('data-step'); // converting the string to array steps = steps.split(',').map(function (item) < return parseInt(item); >); // adding click event listener to the next button next.addEventListener('click', function () < var currentProgress = 0 || parseInt(progress.innerHTML); var nextProgress = steps.find(function (item) < return item >currentProgress; >); if (nextProgress) < progress.style.width = nextProgress + '%'; progress.innerHTML = nextProgress + '%'; >>);

6. Circular Progress Bars

A group of circular progress bars of various different types and colors from CodePen.

This pen contains 9 different types of circular progress bars. You can use any of them in your project.

7. Stylish Progress Bar

A stylish progress bar with a modern interface. You can interact with this progress bar by clicking on the buttons.

When you click the percentage button, the progress bar will be filled with the percentage you have entered and will change the color of the progress bar.

8. SVG Progress Bar

An interactive SVG progress bar with a circular animation. You can interact with this progress bar by typing the percentage in the input field.

When you type the percentage, the circular progress bar will be filled with the percentage you have entered and with a nice animation.

9. Animated Progress Bar with Tooltip

An animated progress bar with a tooltip. Made using Bootstrap 4. The transition is very smooth and looks very professional.

10. Payment Progress Bar

This is a real life example of one of the uses of progress bars. The following pen contains a payment progress bar in a step-by-step format.

The progress bar contains 4 steps. You can click on any step to go to that step. The progress bar makes a smooth transition to that step.

See the Pen Progress Bar by Andy Tran (@andytran) on CodePen.

Conclusion

Adding a progress bar will increase both beauty and functionality of your website. We have looked at almost every possible type of progress bar in this article.

The article covers the creation of progress bars from basic to advance in step by step process.

Источник

W3.CSS Progress Bars

A progress bar can be used to show how far along a user is in a process:

Basic Progress Bar

A normal element can be used for a progress bar.

The CSS width property can be used to set the height and width of a progress bar.

Example

Progress Bar Width

Change the width of a progress bar with the CSS width property (from 0 to 100%):

Example

Progress Bar Colors

Use the w3-color classes to change the color of a progress bar:

Example

Progress Bar Labels

Add text inside a w3-container element to add a label to the progress bar.

Use the w3-center class to center the label. If omitted, it will be left aligned.

Example

Progress Bar Text Size

Use the w3-size classes to change the text size in the container:

Example

Progress Bar Padding

Use the w3-padding classes to add padding to the container.

Example

Rounded Progress Bars

Use the w3-round classes to add rounded corners to a progress bar:

Example

Dynamic Progress Bar

Use JavaScript to create a dynamic progress bar:

Example

Dynamic Progress Bar with Labels

Example

Example

Label outside of the progress bar:

Example

Example

Unlock Full Access 50% off

COLOR PICKER

colorpicker

Join our Bootcamp!

Report Error

If you want to report an error, or if you want to make a suggestion, do not hesitate to send us an e-mail:

Thank You For Helping Us!

Your message has been sent to W3Schools.

Top Tutorials
Top References
Top Examples
Get Certified

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Источник

Html progress bar with text

  • Difference between HTML and CSS
  • What are physical tags in HTML?
  • HTML | Deprecated Tags
  • Container and Empty Tags in HTML
  • HTML Comments
  • How to set background image in HTML ?
  • How to define a list item in HTML5?
  • Difference between semantic and non-semantic elements
  • How to Create Color Picker input box in HTML ?
  • HTML Hex Color Codes
  • HTML Block and Inline Elements
  • HTML Drag and Drop
  • How to set the name for the object in HTML5?
  • How to add space between elements ?
  • How to create a clickable button in HTML ?
  • HTML Links
  • How to link back out of a folder using the a-href tag?
  • HTML ping Attribute
  • HTML disabled attribute
  • What is the use of “#” symbol in link URL ?
  • How to create a link with a media attribute in HTML5 ?
  • How to specify the source URL of the quote using HTML5 ?
  • How to specify that the target will be downloaded when a user clicks on the hyperlink in HTML5 ?
  • How to specify the hyperlink target for the area of an image in HTML5 ?
  • How to make a HTML link that forces refresh ?
  • How to set the language of text in the linked document in HTML5 ?
  • How to specify what media/device the target URL is optimized for ?
  • How to specify URL of resource to be used by the object in HTML5 ?
  • How to use Anchor tag as submit button ?
  • Elements of a form Tag
  • How to set an alternate text for area in HTML5 ?
  • How to specify one or more forms the object belongs to ?
  • How to specify one or more forms the keygen element belongs to ?
  • How to turn on/off form autocompletion in HTML ?
  • How to specify that a group of related form elements should be disabled using HTML?
  • How to specify how form-data should be encoded when submitting to server ?
  • How to specify the URL that will process the data supplied through input(s) when the form is submitted?
  • How to specify one or more forms the label belongs to ?
  • How to specify multiple forms the select field belongs to in HTML ?
  • How to change the type?
  • How to specify which form element a label is bound to ?
  • How to create a multiline input control text area in HTML5 ?
  • How to create form validation by using only HTML ?
  • HTML Emojis
  • How to animate a straight line in linear motion using CSS ?
  • How to specify the media type of the script in HTML5 ?
  • How to display video controls in HTML5 ?
  • How to mute video using HTML5 ?
  • How to add controls to an audio in HTML5 ?
  • Create Scanning Animation Loader using HTML & CSS
  • How to specify media type of data specified in data attribute in HTML5 ?
  • How to set the height and width of the video player in HTML5 ?
  • How to check whether an image is loaded or not ?
  • How to specify the type of the media resource in HTML5 ?
  • How to Create Image Hovered Detail using HTML & CSS ?
  • How to define media type of style tag in HTML5 ?
  • How to set multiple media resources for elements in HTML5 ?
  • How to set a single line break in HTML5 ?
  • How to create a progress bar using HTML and CSS?
  • How to create Perspective Text using HTML & CSS ?
  • How to isolate a part of text that may be formatted in a different direction using HTML5 ?
  • Design an Event Webpage using HTML & CSS
  • How to Skew Text on Hover using HTML and CSS?
  • Programming a slideshow with HTML and CSS
  • How to specify that an option-group should be disabled in HTML5 ?
  • How to disable the drop-down list in HTML5 ?
  • How to define scalar measurement within a given range in HTML5 ?
  • How to set the security algorithm of key in HTML5 ?
  • How to set minimum and maximum value of range in HTML5 ?

Источник

Оцените статью