Advertisement
Computeractive

Untitled

Jan 20th, 2021
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. var cover = document.createElement("div");
  2.  
  3. let css = `
  4.  
  5. position: fixed;
  6.  
  7. pointer-events: none;
  8.  
  9. top: 0;
  10.  
  11. left: 0;
  12.  
  13. width: 100vw;
  14.  
  15. height: 100vh;
  16.  
  17. background-color: white;
  18.  
  19. mix-blend-mode: difference;
  20.  
  21. z-index: 1;
  22.  
  23. `
  24.  
  25. cover.setAttribute("style", css);
  26.  
  27. document.body.appendChild(cover);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement