Skip to content

Instantly share code, notes, and snippets.

@stutrek
Created November 29, 2017 16:06
Show Gist options
  • Save stutrek/105fbd30ce6b28c1b48f3ca95ccc7d10 to your computer and use it in GitHub Desktop.
Save stutrek/105fbd30ce6b28c1b48f3ca95ccc7d10 to your computer and use it in GitHub Desktop.
A style tag that will stop all animations and transitions
<style>
* {
transition-duration: 0 !important;
animation-duration: 0 !important;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment