Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@plasticmind
Created December 19, 2012 18:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plasticmind/4339164 to your computer and use it in GitHub Desktop.
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.
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