Last active
December 18, 2015 09:29
-
-
Save githiro/5761835 to your computer and use it in GitHub Desktop.
CSS: All transition propaties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -moz-transition-property: all; | |
| -webkit-transition-property: all; | |
| -o-transition-property: all; | |
| transition-property: all; | |
| -moz-transition-timing-function: cubic-bezier(0,1,.9,1); | |
| -webkit-transition-timing-function: cubic-bezier(0,1,.9,1); | |
| -o-transition-timing-function: cubic-bezier(0,1,.9,1); | |
| transition-timing-function: cubic-bezier(0,1,.9,1); | |
| -moz-transition-duration: .3s; | |
| -webkit-transition-duration: .3s; | |
| -o-transition-duration: .3s; | |
| transition-duration: .3s; | |
| -moz-transition-delay: 0; | |
| -webkit-transition-delay: 0; | |
| -o-transition-delay: 0; | |
| transition-delay: 0; |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We don't need "-ms-" property for css transition because IE10 supports non-prefixed version.(and ~IE9 doesn't support this property)
C/A: http://caniuse.com/#search=transition