The transition-duration property, normally used as part of transition shorthand, is used to define the duration of a specified transition. That is, the length of time it will take for the targeted element to transition between two defined states.
.example {
transition-duration: 3s;
}
The value can be one of the following:
- A valid time value (defined in seconds or milliseconds)
- A comma-separated list of time values, for transitioning multiple properties on a single element
The default value for transition-duration is 0s, meaning that no transition will take place and the property change will take place immediately, even if the other transition-related properties are defined. The time value can be expressed as a decimal-based number for more precise timing and negative values are not allowed.
The following CodePen shows a hover effect on a box that uses a transition-duration value of1s to gradually change the background color:
<div class="box uni"></div>
.box {
width: 150px;
height: 150px;
background: goldenrod;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
-webkit-transition-duration: 1s;
-moz-transition-duration: 1s;
-o-transition-duration: 1s;
transition-duration: 1s;
}
.box:hover {
background-color: lightblue;
cursor: pointer;
}
.uni {
-webkit-transition-property: background-color;
-moz-transition-property: background-color;
-o-transition-property: background-color;
transition-property: background-color;
}
For compatibility in all supporting browsers, vendor prefixes are required, with the standard syntax declared last:
.example {
-webkit-transition-duration: 700ms;
-moz-transition-duration: 700ms;
-o-transition-duration: 700ms;
transition-duration: 700ms;
}
IE10 (the first stable version of IE to support transition-duration) does not require the -ms-prefix.
Related Properties
Browser Support
| Chrome | Safari | Firefox | Opera | IE | Android | iOS |
|---|---|---|---|---|---|---|
| Works | Works | 4+ | 10.5+ | 10+ | 2.1+ | 3.2+ |

Share
Tweet
Email
Leave a Reply