Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

7 Answers

http://css3please.com has it in. No need for jQuery at all; it's brilliant!

share|improve this answer
7  
Why was this down voted? It has the CSS for all the browsers - major bonus. – Krisc Oct 16 '10 at 23:03
great find Ben! – Sam3k Dec 16 '10 at 22:41
i must say, excellent find....i was looking for something like this in HTML5 but there's no reason...i can just use CSS ^_______^ – espais Apr 19 '11 at 17:38
5  
does not work with IE up to IE9 – alex_b Dec 26 '12 at 18:01
1  
mousedown rotate button and mousemove,sometimes the object will rotate 180% it self first, anyone know why and how to fix it? – user1775888 Feb 1 at 8:58

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

share|improve this answer
Is there any way to rotate DIVs in IE? - Great website by the way ;) – Peter Ajtai Sep 25 '10 at 1:49
1  
With IE 6, 7, and 8 you'd be looking at using the proprietary IE filter CSS property. This can help: transformie.com -- as of IE9 (Platform Preview 7+) there is support for CSS3 transforms like Chrome, Safari, and Firefox. – Zachstronaut Dec 2 '10 at 5:10

To rotate a DIV Make use of WebkitTransform / -moz-transform: rotate(Xdeg).

This will not work in IE. The Raphael library does work with IE and it does rotation. I believe it uses canvases

If you want to animate the rotation, you can use a recursive setTimeout()

You could probably even do part of a spin with jQuery's .animate()

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:

$(function() {
    var $elie = $(selectorForElementsToRotate);
    rotate(0);
    function rotate(degree) {

          // For webkit browsers: e.g. Chrome
        $elie.css({ WebkitTransform: 'rotate(' + degree + 'deg)'});
          // For Mozilla browser: e.g. Firefox
        $elie.css({ '-moz-transform': 'rotate(' + degree + 'deg)'});

          // Animate rotation with a recursive call
        setTimeout(function() { rotate(++degree); },5);
    }
});

jsFiddle example

Note:
Taking the degree and increasing it, will rotate the image clockwise. Decreasing the degree of rotation will rotate the image counter clockwise.

share|improve this answer
3  
"you'll get funny results." More like awesome results. – Charlie S Oct 14 '11 at 1:54
Can we also mention the rotate direction (clockwise/anti-clockwise) ? – Adil Malik Jun 12 '12 at 13:26
@Adil - good idea. Edited answer to reflect. – Peter Ajtai Jun 12 '12 at 16:44

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.

share|improve this answer

Cross-browser rotate for any element. Works in IE7 and IE8. In IE7 it looks like not working in JSFiddle but in my project worked also in IE7

http://jsfiddle.net/RgX86/24/

var elementToRotate = $('#rotateMe');
var degreeOfRotation = 33;

var deg = degreeOfRotation;
var deg2radians = Math.PI * 2 / 360;
var rad = deg * deg2radians ;
var costheta = Math.cos(rad);
var sintheta = Math.sin(rad);

var m11 = costheta;
var m12 = -sintheta;
var m21 = sintheta;
var m22 = costheta;
var matrixValues = 'M11=' + m11 + ', M12='+ m12 +', M21='+ m21 +', M22='+ m22;

elementToRotate.css('-webkit-transform','rotate('+deg+'deg)')
    .css('-moz-transform','rotate('+deg+'deg)')
    .css('-ms-transform','rotate('+deg+'deg)')
    .css('transform','rotate('+deg+'deg)')
    .css('filter', 'progid:DXImageTransform.Microsoft.Matrix(sizingMethod=\'auto expand\','+matrixValues+')')
    .css('-ms-filter', 'progid:DXImageTransform.Microsoft.Matrix(SizingMethod=\'auto expand\','+matrixValues+')');
share|improve this answer
This isn't working for me in IE 7 or 8 when I emulate them in IE 10. – curtis May 20 at 21:49

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).

share|improve this answer
I think this is what the [ Raphael library ](raphaeljs.com) does. Here's some [ rotation with Raphael ](raphaeljs.com/image-rotation.html) – Peter Ajtai Sep 25 '10 at 2:04

Here are two jQuery patches to help out (maybe already included in jQuery by the time you are reading this):

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.