Rare
  • Introduction
  • HTML
    • Introduction
    • Html Structure
      • Header
      • Left Side Menu
      • Main Content
    • Main Content
      • Buttons
      • Fonts
      • Lock Screens
      • Maps
      • Modals
      • Plugins Used
      • Progress Bars
    • Css Files
    • Java Script Used
    • Scss
    • Fonts Used
    • Images used
    • Starts New page
      • Centered Logo
      • Compact Menu
      • Default
      • Horizontal
      • Light Side Bar
      • Mmenu
  • Rare Builder
    • Layouts
      • Default
      • Centered Logo
      • Compact Menu
      • Fixed Menu
      • Fixed Header
      • Horizontal
      • Icon Horizontal
      • Dark
      • Full Width
      • Header Style
      • Fixed Footer
      • Mmenu
      • Light Sidebar
    • Macros
      • Layouts
      • Breadcrumb
    • Partials
      • Headers
        • Header
        • Centered Logo Header
      • Heads
        • Head
      • Breadcrumbs
        • Breadcrumb 1
        • Breadcrumb 2
        • Breadcrumb 3
        • Breadcrumb 4
        • Breadcrumb 5
        • Breadcrumb Default
      • Ends
        • End
      • Menus
        • Default
        • Horizontal
        • Icon Horizontal
        • Compact
        • Mmenu
      • Footer
        • Footer
        • Fixed Footer
      • Messages
      • Notifications
      • User Profile
    • Add Builder
    • Commands
    • New Page
  • FAQ
    • Change Left Menu Content
    • Setting Layout As Default
    • Change Breadcrumb
    • Change Colors In scss
Powered by GitBook
On this page

Was this helpful?

  1. HTML
  2. Main Content

Progress Bars

PreviousPlugins UsedNextCss Files

Last updated 5 years ago

Was this helpful?

we have basically classified progress bars into two categories and they are Progress bars and Advanced progress bars, which in turn have the other sections . To know more about it visit the page of our template.

It has the following design:

Horizontal Progress Bar

<div class="progress">
    <div class="progress-bar" style="width: 70%;">Content</div>
</div>

parameters:

1) Background color - sets the color of the background. Can take values - progress-info, progress-success, progress-warning, progress-danger.

<div class="progress">
    <div class="progress-bar progress-bar-success" style="width: 70%;">Content</div>
</div>

2) striped - uses a gradient to create a striped effect.

<div class="progress progress-striped">
   <div class="progress-bar" style="width: 70%;">Content</div>
</div>

3) animated striped - add.activeto.progress-stripedto animate the stripes left to right.

<div class="progress progress-striped active">
    <div class="progress-bar" style="width: 70%;">Content</div>
</div>

4) animated - sets the animation till the percentage given to attribute.

<div class="progress" data-appear-progress-animation="70%">
   <div class="progress-bar">Content</div>
</div>
general_components.html