Skip to content

Instantly share code, notes, and snippets.

@CrocodileCroco
Created November 9, 2018 14:40
Show Gist options
  • Save CrocodileCroco/c2babeb51b4b5cd6663d8d2bdb122e83 to your computer and use it in GitHub Desktop.
Save CrocodileCroco/c2babeb51b4b5cd6663d8d2bdb122e83 to your computer and use it in GitHub Desktop.
Spin Whole Page CSS Animation
@keyframes megaspin {
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}
*:not(body) {
animation: megaspin;
animation-iteration-count: infinite;
animation-duration: 0.5s;
animation-timing-function: linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment