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.
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.
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).You could use jQuery to slide the background position around, and use or create the appropriate css sprite image table for it.
of course you'd need to have 100 sprite cells, and then you'd need to compile a list of background position co-ords into an multi-dimensional array/table/dictionary.
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.
What are you loading? A basic example would be:
Cheers