Created
November 9, 2018 14:40
-
-
Save CrocodileCroco/c2babeb51b4b5cd6663d8d2bdb122e83 to your computer and use it in GitHub Desktop.
Spin Whole Page CSS Animation
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
| @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