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);
}