reduceTransforms

当有速记等效项时,在变换函数之间转换。

示例

输入

.box {
    transform: translate3d(0, 0, 0);
}

输出

.box {
    transform: translateZ(0);
}