I want to create a mixin for sass that will apply a rotation to the specified element. The mixin should take one parameter, for the number of degrees of rotation to apply.

From css3please.com, I found a cross-browser way to implement this with CSS:

.box_rotate {
     -moz-transform: rotate(7.5deg);  /* FF3.5+ */
       -o-transform: rotate(7.5deg);  /* Opera 10.5 */
  -webkit-transform: rotate(7.5deg);  /* Saf3.1+, Chrome */
      -ms-transform: rotate(7.5deg);  /* IE9 */
          transform: rotate(7.5deg);  
             filter: progid:DXImageTransform.Microsoft.Matrix(/* IE6–IE9  */
                     M11=0.9914448613738104, M12=-0.13052619222005157,M21=0.13052619222005157, M22=0.9914448613738104, sizingMethod='auto expand');
               zoom: 1;
}

This is all very easy to make a mixin for, except for the pesky IE matrix notation. Does anyone have any suggestions for a way to transform the degrees into the IE matrix transformation using sass, javascript, or a combo of both?

link|improve this question

In case anyone is interested, I wrote the mixin, and it's hosted here: github.com/adambom/CSS3-Please-for-SASS – Adam Apr 14 '11 at 22:27
feedback

2 Answers

up vote 3 down vote accepted

This function allows to transform the degrees into IE matrix transformation.

//deg input defines the requested angle of rotation.
function degreeToIEMatrix(deg){   
    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;
}

You will find more informations here.

link|improve this answer
To use implicit globals should not be encouraged. – adamse Apr 14 '11 at 21:50
ok @adamse I modified this – Remy Apr 14 '11 at 21:55
Every variable definition in your function creates a global variable. You need to use var to create local variables. – adamse Apr 14 '11 at 21:58
I understand now why you said "implicit". thanks @adamse. More informations about scope rx4ajax-jscore.com/ecmacore/more/scope.html – Remy Apr 14 '11 at 22:07
feedback

The rotation matrix is defined as

[[cos(A), -sin(A)],
 [sin(A),  cos(A)]]

where A is the angle. M11 in the IE matrix is the first element of the first row; M12: the second element of the first row etc.

JavaScripts Math.sin and Math.cos operate on radians so you will have to turn your degrees into radians

radians = degrees * Math.PI / 180

Putting this together we get this function:

function rotationMatrix(degrees) {
  var A = degrees * Math.PI / 180;
  return [[Math.cos(A), -Math.sin(A)], [Math.sin(A),  Math.cos(A)]]
}

Example:

rotationMatrix(10) 
// => [[0.984807753012208, -0.17364817766693033], 
//     [0.17364817766693033, 0.984807753012208]]
link|improve this answer
Works great, thanks, but @lbdremy was first. – Adam Apr 14 '11 at 21:40
1  
Usually you mark the best answer to your question as your accepted answer. Not the first, however if you think @lbdremy's answer was the best! – adamse Apr 14 '11 at 21:47
I just needed the algorithm. I ended up writing this function in sass anyway. – Adam Apr 15 '11 at 0:51
feedback

Your Answer

 
or
required, but never shown

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