I have been searching for a circular progress bar plugin but haven't found one that suits my needs, so I decided to build my own using pure CSS:
While it looks great, there are two issues I am facing:
1.) When at 25% in Firefox V28.Final, the progress bar shows an unwanted border. How can I resolve this?
2.) I would like to incorporate a jQuery script to animate the progress (the gradient). The challenge is making sure the linear-gradient has a consistent structure during animation. Is there a way to achieve this similar to how I created the example using CSS?
var start = 0;
var end = 75;
// Animate linear-gradient from 0 to 75%
$('#progressbar').animate({
});
Thank you!