normalizeTimingFunctions

animationanimation-timing-functiontransitiontransition-timing-function 属性中规范过渡时间。

示例

输入

.box {
    transition: color 3s steps(30, end);
}

输出

.box {
    transition: color 3s steps(30);
}