Last active
October 29, 2017 22:53
-
-
Save LiamKarlMitchell/8692a7ed8a901c8a9a7256cf92e862e6 to your computer and use it in GitHub Desktop.
Drunk Stack Overflow - Drunk CSS
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 rotating-function { | |
| 0% { | |
| transform: rotate(0deg); | |
| } | |
| 25% { | |
| transform: rotate(2deg); | |
| filter: blur(1px); | |
| } | |
| 50% { | |
| transform: rotate(0deg); | |
| filter: blur(1.25px); | |
| } | |
| 75% { | |
| transform: rotate(-2deg); | |
| filter: blur(1px); | |
| } | |
| 100% { | |
| transform: rotate(0deg); | |
| } | |
| } | |
| table { | |
| animation: rotating-function 10s linear infinite; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment