Specifies the speed curve of an animation.
Class | Properties | |
---|---|---|
animation-linear | animation-timing-function: linear; | |
animation-ease-in | animation-timing-function: cubic-bezier(0.4, 0, 1, 1); | |
animation-ease-out | animation-timing-function: cubic-bezier(0, 0, 0.2, 1); | |
animation-ease-in-out | animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); |