css animation-timing-function property code example
Example 1: steps() property css
@keyframes clocksweep {
to {
transform: rotate(1turn);
}
}
#secondhand {
animation: clocksweep 60s steps(60) infinite;
}
Example 2: css animation linear
animation-timing-function: linear;