Jquery Simple ProgressBar Demo
Code and docs at github
75
$('#simplest-bar').simple_progressbar(); // the value (75) was readed rom the div text
$('#example2').simple_progressbar({value: 25, showValue: true});
$('#example3').simple_progressbar({value: 25, showValue: true, valueText: 'too low!'});
$('#example4').simple_progressbar({value: 115});
$('#example5').simple_progressbar({value: 80,
height: '5px',
internalPadding: '3px',
normalColor: '#0767BA',
backgroundColor: '#C5D7EB'});
75
function updateExample6() {
$('#example6').simple_progressbar({value: parseInt(Math.random() * 100 + 20)});
setTimeout(updateExample6, 500);
};
setTimeout(updateExample6, 500);