Re: [csswg-drafts] [css-transforms] Let 'transform-origin' and 'transform' take comma-separated lists (#589)

> In the meeting notes @tabatkins said that "translate-origin is a translate function before and after your transform list". I guess he still referred to `transform-origin`, though I still don't get what he meant.

Yes, that should be `transform-origin`. For [example](https://jsfiddle.net/ericwilligers/32qp7zmn/),

```
  transform-origin: 10px 20px;
  transform: rotate(30deg) scale(4);
```
is equivalent to
```
  transform-origin: 0px 0px;
  transform: translate(10px, 20px) rotate(30deg) scale(4) translate(-10px, -20px);
```

See steps 2 and 8 in https://drafts.csswg.org/css-transforms-2/#ctm


-- 
GitHub Notification of comment by ewilligers
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/589#issuecomment-546553049 using your GitHub account

Received on Saturday, 26 October 2019 00:48:30 UTC