- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Animate a striped progress bar in Bootstrap
To animate a striped progress bar, use the .active class with the .progress-bar class in Bootstrap.
You can try to run the following code to animate a striped progress bar
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>Level</h2> <p>The level of water in meters:</p> <div class = "progress"> <div class = "progress-bar progress-bar-striped active" role = "progressbar" aria-valuenow = "20" aria-valuemin = "0" aria-valuemax = "100" style = "width:40%"> 20% </div> </div> </div> </body> </html>
- Related Articles
- Create a striped Bootstrap progress bar
- Animate Bootstrap progress bar
- Bootstrap progress-striped class
- Bootstrap progress-bar class
- Create a progress bar with Bootstrap
- Create a Bootstrap progress bar with different styles
- Striped Table with Bootstrap
- Bootstrap table-striped class
- Custom progress Bar in Android?
- Bootstrap progress class
- How to create a progress bar in HTML?
- Create circular Progress Bar in iOS
- How to create a download progress bar in Tkinter?
- Custom Progress Bar in Android using Kotlin.
- How to write Progress Bar in PowerShell?

Advertisements