ExampleA transition effect with the same speed from start to end:
Try it yourself » |
The transition-timing-function property is not supported in any browsers.
Safari and Chrome support an alternative, the -webkit-transition-timing-function property.
Opera support an alternative, the -o-transition-timing-function property.
The transition-timing-function property specifies the speed curve of the transition effect.
This property allows a transition effect to change speed over its duration.
Default value: | ease |
---|---|
Inherited: | no |
Version: | CSS3 |
JavaScript syntax: | object.style.transitionTimingFunction="linear" |
transition-timing-function: linear|ease|ease-in|ease-out|ease-in-out|cubic-bezier(n,n,n,n); |
Value | Description |
---|---|
linear | Specifies a transition effect with the same speed from start to end (equivalent to cubic-bezier(0,0,1,1)) |
ease | Specifies a transition effect with a slow start, then fast, then end slowly (equivalent to cubic-bezier(0.25,0.1,0.25,1)) |
ease-in | Specifies a transition effect with a slow start (equivalent to cubic-bezier(0.42,0,1,1)) |
ease-out | Specifies a transition effect with a slow end (equivalent to cubic-bezier(0,0,0.58,1)) |
ease-in-out | Specifies a transition effect with a slow start and end (equivalent to cubic-bezier(0.42,0,0.58,1)) |
cubic-bezier(n,n,n,n) | Define your own values in the cubic-bezier function. Possible values are numeric values from 0 to 1 |
Tip: Try the different values in the examples below to understand how it works!
![]() |
Try it Yourself |
ExampleTo better understand the different function values: Here are five different div elements with five different values:
Try it yourself » |
ExampleSame as the example above, but the speed curves are specified with the cubic-bezier function:
Try it yourself » |