A jQuery plugin that creates a percentage circle based on pure CSS.
http://iammary.github.io/progress-circle/
-
Prepare the markup holder
<div id="circle"></div>
-
Invoke the progressCircle() function
$( '#circle' ).progressCircle();
Below is an example of the code with all available options and their defaults:
$( '#circle' ).progressCircle({
nPercent : 50,
showPercentText : true,
thickness : 3,
circleSize : 100
});
Checkout development branch at https://github.com/iammary/progress-circle/tree/dev