Shorthand syntax:
transition: <property> || <duration> || <timing-function> || <delay> [, ...];
Note that the duration must come before the delay if the latter is specified.
Individual transitions combined in shorthand declarations:
-webkit-transition: height 0.3s ease-out, opacity 0.3s ease 0.5s;
-moz-transition: height 0.3s ease-out, opacity 0.3s ease 0.5s;
-ms-transition: height 0.3s ease-out, opacity 0.3s ease 0.5s;
-o-transition: height 0.3s ease-out, opacity 0.3s ease 0.5s;
transition: height 0.3s ease-out, opacity 0.3s ease 0.5s;
Or just transition them all:
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
Here is a straightforward example. Here is another one with the delay property.
Compatibility/syntax as of November 2012 (data from http://caniuse.com/css-transitions):
Trident layout engine (IE):
- IE6 to IE9, not supported
- IE10+, unprefixed
Gecko layout engine (Firefox):
- Firefox 4 to 15,
-moz- prefixed
- Firefox 15+, unprefixed
- Firefox for Android 15+,
-moz- prefixed
Webkit layout engine (Chrome, Safari, Blackberry):
- Chrome 4+,
-webkit- prefixed
- Chrome for Android 18+,
-webkit- prefixed
- Android browser 2.1+,
-webkit- prefixed
- Safari 3.1+,
-webkit- prefixed
- Mobile (iOS) Safari 3.2+,
-webkit- prefixed
- Blackberry browser 7+,
-webkit- prefixed
Presto layout engine (Opera):
- Opera 10.5 to 12,
-o- prefixed
- Opera 12+, unprefixed
- Opera Mini, not supported
- Opera Mobile 10 to 12,
-o- prefixed
- Opera Mobile 12+, unprefixed
.5svalues afteropacityintended? – BoltClock♦ Mar 12 '12 at 15:52