Skip to content

Instantly share code, notes, and snippets.

@rolka
Created August 18, 2014 11:27
Show Gist options
  • Save rolka/92f05d62c5d24a15bc00 to your computer and use it in GitHub Desktop.
Save rolka/92f05d62c5d24a15bc00 to your computer and use it in GitHub Desktop.
Removing CSS animations/ transitions/transforms
/*CSS transitions*/
-o-transition-property: none !important;
-moz-transition-property: none !important;
-ms-transition-property: none !important;
-webkit-transition-property: none !important;
transition-property: none !important;
/*CSS transforms*/
-o-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-webkit-transform: none !important;
transform: none !important;
/*CSS animations*/
-webkit-animation: none !important;
-moz-animation: none !important;
-o-animation: none !important;
-ms-animation: none !important;
animation: none !important;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment