Skip to content

Instantly share code, notes, and snippets.

@giorgiberia
Last active March 24, 2023 06:54
Show Gist options
  • Save giorgiberia/f04c28fadd9cf807a06d1dcc604ca19d to your computer and use it in GitHub Desktop.
Save giorgiberia/f04c28fadd9cf807a06d1dcc604ca19d to your computer and use it in GitHub Desktop.
var cover = document.createElement("div");
let css = `
position: fixed;
pointer-events: none;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: white;
mix-blend-mode: difference;
z-index: 1;
`
cover.setAttribute("style", css);
document.body.appendChild(cover);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment