Skip to content

Instantly share code, notes, and snippets.

@iamnewton
Created March 12, 2015 01:04
Show Gist options
  • Save iamnewton/fc99d379d89951176a33 to your computer and use it in GitHub Desktop.
Save iamnewton/fc99d379d89951176a33 to your computer and use it in GitHub Desktop.
Spoiler filter
.spoiler {
filter: blur(20px);
transition-property: -webkit-filter;
transition-duration: .4s;
}
.spoiler:hover, .spoiler:focus {
filter: blur(0px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment