Advertisement
lemansky

Untitled

Mar 21st, 2024
555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.77 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Document</title>
  7.     <style>
  8.         .paused {
  9.           background: #ddd;
  10.           color: #555;
  11.         }
  12.     </style>   
  13. </head>
  14. <body>
  15.     <p id="log">Click on this document to give it focus.</p>
  16.     <script>
  17.         function pause() {
  18.           document.body.classList.add("paused");
  19.           log.textContent = "FOCUS LOST!";
  20.         }
  21.  
  22.         function play() {
  23.           document.body.classList.remove("paused");
  24.           log.textContent =
  25.             "This document has focus. Click outside the document to lose focus.";
  26.         }
  27.  
  28.         let log = document.getElementById("log");
  29.  
  30.         window.addEventListener("blur", pause);
  31.         window.addEventListener("focus", play);
  32.  
  33.     </script>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement