Skip to content

Instantly share code, notes, and snippets.

@Explosion-Scratch
Last active November 30, 2020 17:06
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 Explosion-Scratch/a53710094f802ce62b8d7dff7e8587b7 to your computer and use it in GitHub Desktop.
Save Explosion-Scratch/a53710094f802ce62b8d7dff7e8587b7 to your computer and use it in GitHub Desktop.
Blur with click
javascript: {
var style = document.createElement("STYLE");
style.innerHTML = `.blur {filter: blur(4px) !important;}`;
document.body.appendChild(style);
document.addEventListener("click", (e) => {
e.preventDefault();
e.target.classList.toggle("blur");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment