Consider the following fiddle: http://jsfiddle.net/a7EVf/5/
Is it possible to have the div rotate through (effectively to 360 degrees instead of 0) on hover out instead of moving back counterclockwise?
I would rather NOT use JavaScript (including jQuery) if possible - I realize it would be simple enough to set
transform: rotate(360deg); /*also the vendor-specific versions*/
on the original using JS (and once it reaches 360 reset it to 0 without a transition), but is it possible to do this only using CSS3?