Jquery ProgressBar Demo

progressBarTimer: Bootstrap 4 Based Countdown Timer Examples

Basic Example (Auto Start = False)
$('...').progressBarTimer({ autoStart: true });
Different colors (Auto Start)
$('...').progressBarTimer({ autoStart: true, baseStyle: 'bg-info', warningStyle: 'bg-warning', completeStyle: 'bg-danger' });
Striped (Auto Start)
$('...').progressBarTimer({ autoStart: true, striped: true });
Animated (Auto Start)
$('...').progressBarTimer({ autoStart: true, animated: true });
Set Height (Auto Start)
$('...').progressBarTimer({ autoStart: true, height: 30 });
Smooth (Auto Start)
$('...').progressBarTimer({ autoStart: true, smooth: true });
Time Limit & Warning Threshold (Auto Start)
$('...').progressBarTimer({ autoStart: true, timeLimit: 30, warningThreshold: 10 });
Labels (Auto Start, Percent)
$('...').progressBarTimer({ autoStart: true, label : { show: true, type: 'percent' } });
Labels (Auto Start, seconds)
$('...').progressBarTimer({ autoStart: true, label : { show: true, type: 'seconds' } });

Events

onFinish (Auto Start)
$('...').progressBarTimer({ autoStart: true, onFinish : function () { alert('That\'s all folks'); } });

API

$('...').progressBarTimer();