Skip to content

Instantly share code, notes, and snippets.

@jordanthomas
Last active December 26, 2015 05:39
Show Gist options
  • Save jordanthomas/7102086 to your computer and use it in GitHub Desktop.
Save jordanthomas/7102086 to your computer and use it in GitHub Desktop.
<!doctype HTML>
<html>
<body>
<a href="javascript:(function() {
var blur = 8,
style = 'blur(' + blur + 'px)';
if ( document.body.style.webkitFilter.indexOf(style) === -1 ) {
document.body.style.webkitFilter = style;
} else {
document.body.style.webkitFilter = 'none';
}
})();">Blur</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment