Plugins

Progress

Responsive and slick progress bars with animated SVG paths.

Requirements

<script src="js/vendor/progressbar.min.js"></script>

Example

Javascript
new ProgressBar.Line(document.querySelector('#progressLineBasic'), {
  color: Globals.primary,
  trailColor: Globals.separator,
  val: 75,
  max: 100,
  duration: 0,
}).animate(75 / 100);
Html
<div role="progressbar" class="progress-bar-line" id="progressLineBasic"></div>

More Examples

You may find more examples in Interface.Plugins.Progress.html file which is initialized by js/plugins/progressbars.js.

Documentation