Created
December 19, 2012 18:31
-
-
Save plasticmind/4339164 to your computer and use it in GitHub Desktop.
Confuse and annoy your friends with CSS. Every 20 seconds, blur the screen for 2 seconds.
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
html { | |
-webkit-animation: annoy 20s ease alternate infinite; | |
} | |
@-webkit-keyframes annoy { | |
0% { -webkit-filter: blur(0px) } | |
90% { -webkit-filter: blur(0px) } | |
100% { -webkit-filter: blur(1px) } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment