正規化時間函數 (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);
}