Change Animation Timing with Keywords
Summary
- The
animation-timing-function
property controls how quickly an animated element changes over the duration of the animation. - The default value
ease
, starts slow, speeds up in the middle, and then slows down again in the end. - The value
ease-out
starts quick, then slows down. - The value
ease-in
starts slow, then speeds up. - The value
linear
is constant.
Final Code