[CSS-transforms] rotate(<angle>[, <translation-value>, <translation-value>])

Hi Dirk,

recently you added the 3 parameter version of rotate to the transform spec:
http://dev.w3.org/csswg/css3-transforms/#two-d-transform-functions

Are you also going to update the section how this new parameter behaves in
transitions and animations? (
http://dev.w3.org/csswg/css3-transforms/#animation)
Currently, the spec states that if not specified, the default for rotate is
rotate(0). So:

@keyframes myrotate{

from{ transform: none}

to { transform: rotate(45deg, 10px, 10px); }

}


What is the initial state of rotate? Is it rotate(0, 0, 0) like the spec
implies or rotate(0, 10px, 10px) which seems more what I expect?

Rik

Received on Wednesday, 15 February 2012 19:28:12 UTC