animation
英[ˌænɪˈmeɪʃn] 美[ˌænəˈmeʃən]
n. Angry, lively; cartoon production, cartoon shooting; [film and television] animation
Plural: animations
timing
## English[ˈtaɪmɪŋ] US[ˈtaɪmɪŋ] n.Timing; timing control; light distribution ;Timekeepingfunction
English[ˈfʌŋkʃn] US[ˈfʌŋkʃən] n. Function, effect; response variable, function; position; major Party vi.Have or function; perform duties Third person singular: functions Plural: functions Present participle: functioning Past tense: functioned Past participle: functionedcss animation-timing-function attribute syntax
What is animation-timing-function?
animation-timing-function is an animation property of CSS, which is used to specify the speed curve of the animation, that is, the way the animation is played, to make the changes of the animation smoother.
Function:animation-timing-function specifies the speed curve of animation. The velocity curve defines how long it takes for the animation to change from one set of CSS styles to another. Speed curves are used to make changes smoother.
Syntax:animation-timing-function: value;
Description:animation-timing-function uses the name Cubic Bezier Mathematical function of Cubic Bezier function to generate speed curve.
You can use your own values in this function, or predefined values:
linear The speed of the animation is the same from beginning to end.
ease Default. The animation starts at a slow speed, then speeds up, then slows down before ending.
ease-in The animation starts at a low speed.
ease-out The animation ends at a low speed.
ease-in-out The animation starts and ends at a slow speed.
cubic-bezier(n,n,n,n) own value in cubic-bezier function. Possible values are numeric values from 0 to 1.
Note:Internet Explorer 9 and earlier versions do not support the animation-timing-function attribute.