Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Circular progress indicator with jQuery

I need circular progress indicator. How should I implement this?

What I'm looking for is what jQuery UI has in their planning page, but its not yet implemented. I'm just curious if anyone has implemented this before. See item 6 in following image.

alt text

http://wiki.jqueryui.com/ProgressIndicator

like image 934
newbie Avatar asked Oct 10 '10 18:10

newbie


2 Answers

Like, one of these? You don't need a plugin for that. Just .show() and .hide() a GIF as necessary (or insert it into the DOM, whatever floats your boat).

like image 128
mpen Avatar answered Oct 04 '22 11:10

mpen


Not jQuery, but you might want to take a look at the Raphaël javascript library, and in-particular the polar clock example, and the 'arc' custom attribute. I've used Raphaël and jQuery together to generate some static circular progress bars before - it works quite nicely.

like image 30
Matt Austin Avatar answered Oct 04 '22 12:10

Matt Austin