Skip to content

Instantly share code, notes, and snippets.

@levinmejia
Created December 18, 2015 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save levinmejia/f731c305c04ea5543f93 to your computer and use it in GitHub Desktop.
Save levinmejia/f731c305c04ea5543f93 to your computer and use it in GitHub Desktop.
<style>
.animate-blur {
-webkit-animation: blur-animated 2s forwards;
}
@-webkit-keyframes blur-animated {
0% {
-webkit-filter: blur(0);
}
100% {
-webkit-filter: blur(5px);
}
}
</style>
<script>
$('button').click(function() {
$('.original').toggleClass('animate-blur');
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment