Transition
Introduction
CSS transitions allows you to change property values smoothly, over a given duration.
Transition Properties
Property | Values | Description |
---|---|---|
Transition Property | CSS properties, all, none | Specifies the name of the CSS property the transition effect is for (the transition effect will start when the specified CSS property changes). |
Transition Duration | number | Specifies how many seconds (s) or milliseconds (ms) a transition effect takes to complete. |
Transition Timing Function | ease, linear, ease-in, ease-out, ease-in-out | Specifies the speed curve of the transition effect. |
Was this article helpful?
YesNo