CSS 3D transforms

CSS Transform Module Level 2,是 CSS Transform Module Level 1 的补充,专注 3D transforms。

相关属性

Perspective

perspective property 用在父元素上,为所有子元素创建一个共享的 3D 空间。

perspective() function 为元素创建单独的 3D 空间。

perspective-origin

https://css-tricks.com/almanac/properties/p/perspective-origin/

transform-style

transform-origin

transform-origin 的值扩充到 3 个 transform-origin: x, y, z,默认值是 50%, 50%, 0

transform

Spec 提到新增三个属性 translate, rotate, scale,不过似乎还没有浏览器实现。

translate

rotate

scale

perspective function

perspective() function 为元素创建单独的 3D 空间。

matrix

matrix3D() 有 16 个参数,指定一个 4x4 矩阵。