CSS

矩阵 | matrix()

matrix()

该matrix() CSS函数定义了一个齐次2D变换矩阵。

注意: matrix(a, b, c, d, tx, ty)matrix3d(a, b, 0, 0, c, d, 0, 0, 0, 0, 1, 0, tx, ty, 0, 1)的一个简写。

语法

matrix()功能是用六个值指定的。常量值是隐含的,不作为参数传递; 其他参数按列主要顺序进行描述。

注:直到Firefox 16,Gecko接受了对tx和ty的<length>值。

matrix(a, b, c, d, tx, ty)

可能值

abcd是描述线性变换的<number>.txty是描述平移的<number>

Cartesian coordinates on ℝ2Homogeneous coordinates on ℝℙ2Cartesian coordinates on ℝ3Homogeneous coordinates on ℝℙ3
ac bdactxbdty001actxbdty001ac0txbd0ty00100001

| a b c d tx ty |

实例

HTML

<div>Normal</div> <div class="changed">Changed</div>

CSS

div { width: 80px; height: 80px; background-color: skyblue; } .changed { transform: matrix(1, 2, -1, 1, 80, 80 background-color: pink; }

结果