Transition-delay
Transition-delay specifies how long after it is triggered the transition will start.
Use seconds 's', or milliseconds 'ms' to define the value.
See also:
Transition-property
Transition-property specifies a list of properties to be changed by the transition.
List of CSS properties that can be changed with transition.
See also:
Transition-duration
Transition-duration specifies how many seconds 's' or milliseconds 'ms' a transition effect takes to complete.
See also:
Transition
Transition is all about what happens when a property changes form one value to another. How long it takes and what timing function is used.
Transition is a shorthand rule for:
- transition-property which specifies what property you are changing.
- transition-duration the length of time the transition takes.
- transition-timing-function the timing function used eg. ease, linear.
