normalizeTimingFunctions
在 animation、animation-timing-function、transition 和 transition-timing-function 属性中规范过渡时间。
示例
输入
.box {
transition: color 3s steps(30, end);
}
输出
.box {
transition: color 3s steps(30);
}
在 animation、animation-timing-function、transition 和 transition-timing-function 属性中规范过渡时间。
.box {
transition: color 3s steps(30, end);
}
.box {
transition: color 3s steps(30);
}