Trying to rotate a div element...This might be DOM blasphemy, could it work possibly with a canvas element? I'm not sure - if anybody has any ideas of how this could work or why it doesn't, I'd love to know. Thanks.
|
feedback
|
|
Firefox 3.5, Safari, and Chrome all have a CSS transform property now that will let you rotate a div. You might find this helpful: http://www.zachstronaut.com/posts/2009/02/17/animate-css-transforms-firefox-webkit.html | |||||||
feedback
|
|
http://css3please.com has it in. No need for jQuery at all; it's brilliant! | |||||||||
feedback
|
|
To rotate a DIV Make use of This will not work in IE. The Raphael library does work with IE and it does rotation. I believe it uses If you want to animate the rotation, you can use a recursive You could probably even do part of a spin with jQuery's Make sure that you consider the width of your element. If rotate an that has a larger width than its visible content, you'll get funny results. However you can narrow the widths of elements, and then rotate them. Here is a simply jQuery snippet that rotates the elements in a jQuery object. Rotatation can be started and stopped:
jsFiddle example | |||||
feedback
|
|
yeah you're not going to have much luck i think. Typically across the 3 drawing methods the major browsers use (Canvas, SVG, VML), text support is poor, I believe. If you want to rotate an image, then it's all good, but if you've got mixed content with formatting and styles, probably not. Check out RaphaelJS for a cross-browser drawing API. | |||
|
feedback
|
|
I doubt you can rotate an element using DOM/CSS. Your best bet would be to render to a canvas and rotate that (not sure on the specifics). | |||
feedback
|
|
Here's a jQuery plugin to help out. http://www.zachstronaut.com/posts/2009/02/22/jquery-patch-css-transform.html http://www.zachstronaut.com/posts/2009/08/07/jquery-animate-css-rotate-scale.html | |||
|
feedback
|