Skip to content

Instantly share code, notes, and snippets.

@githiro
Last active December 18, 2015 09:29
Show Gist options
  • Select an option

  • Save githiro/5761835 to your computer and use it in GitHub Desktop.

Select an option

Save githiro/5761835 to your computer and use it in GitHub Desktop.
CSS: All transition propaties
-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;
@githiro

githiro commented Jun 11, 2013

Copy link
Copy Markdown
Author

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment