Re: [css3-transforms] Making transform-origin a list, converting transform to comma separated

I want to note, that SVG Transforms allows commas for separating transformation functions as well [1]. It is up to the user to use spaces, commas, or both for separating transformation functions.

That means for backward compatibility to SVG transform, we can not interpret the following two examples differently:

translate(20px, 20px)      scale(2)
translate(20px, 20px)   ,  scale(2)

Greetings,
Dirk

[1] http://www.w3.org/TR/SVG/coords.html#TransformAttribute
On Feb 7, 2012, at 6:51 PM, Rik Cabanier wrote:



On Tue, Feb 7, 2012 at 5:33 PM, Lea Verou <leaverou@gmail.com<mailto:leaverou@gmail.com>> wrote:
On 8/2/12 02:35, Rik Cabanier wrote:
It seems easier to split the animation.

"Split the animation" as in...
1. split it to 2 animations
2. split it to 2 transform-origins
3. split it to 2 elements

All of the above <330.gif>

Received on Thursday, 9 February 2012 16:54:26 UTC