【前端】css transform 不能接多个matrix

css transform可以这样写:

transform: skew(30deg) rotate(30deg);

也可以这样写:

transform: matrix(1,0,tan(30deg),1,0,0);

但是好像不能这样写:

transform: matrix(1,0,tan(30deg),1,0,0) matrix(1,0,0,1,0,0);

transform本质上不是矩阵相乘吗?为什么不能这样连续的写matrix?

看了MDN上的相关内容,觉得这样写也是正确的。

chrome edition 76.0.3809.100

回答

是指什么样的机型呢?当中,红色域块的逻辑是连写完成的
https://www.lilnong.top/stati...

【前端】css transform 不能接多个matrix

以上是 【前端】css transform 不能接多个matrix 的全部内容, 来源链接: utcz.com/a/81439.html

回到顶部