CSS3 Transitions
CSS3 Transitions allows us to change the value of another CSS property from one value to another over a specified duration of time.
The transition
property takes below format:
For example, to have the background color property value of a div transitioned from its original value to a new value, we can have something like below:
Above is short-hand for specifying below 4 transition related properties:
Last updated