views:

246

answers:

3

Are there any good JavaScript libraries that can do this ?

These are usually done in flash

I have found this plugin so far, looking for others to evaluate.

http://jquery.vostrel.cz/reel

A: 

If you just want an X degree rotation thing, we used this script from TwitPic (http://twitpic.com/1kg9w8). It was very easy to adapt. If you want some spinning thing, I guess you could combine this library with a timeout to have it move at intervals.

webdestroya
+1  A: 

try these!

http://www.mathieusavard.info/threesixty/demo.html


http://www.silverscripting.com/pamoorama/sample1.html

http://www.openstudio.fr/jquery.panorama/

aSeptik
first link is the kind of thing im after.
Anthony
A: 

The following CSS properties (which can be set by JavaScript) are the best way to rotate elements:

-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
Delan Azabani