Advertisement
1xptolevitico69

Page Overlay

May 27th, 2020
801
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.18 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Page View/Overlay </title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width">
  7. <style>
  8.  
  9.  
  10. body {  background-image:url('file:///C:/Users/Utilizador/Desktop/LINKS/YOUTUBE/praia.jpg');
  11.         background-size:100% 100%;background-attachment:fixed;
  12.         margin:0;overflow:hidden;   }
  13.  
  14.  
  15. #audio {  width:400px;outline:none;border:10px solid red;
  16.           border-radius:50px;position:absolute;top:50%;left:50%;
  17.           transform:translate(-50%,-50%);
  18.           padding:20px;background-color:olive;       }
  19.  
  20. #opaque {  width:100%;height:100%;
  21.            position:absolute;top:0;left:0;    }
  22.  
  23.  
  24. </style>
  25. </head>
  26. <body>
  27.  
  28.  
  29. <audio id='audio' controls>
  30. <source src="file:///C:/Users/Utilizador/Desktop/LINKS/PIPOCA%20BEACH/audio.mp3" type="audio/mpeg"></audio>
  31.  
  32.  
  33. <overlay id='opaque'></overlay>
  34.  
  35.  
  36.  
  37.  
  38. <script>
  39. i=0;
  40.  
  41. opaque = document.getElementById('opaque');
  42.  
  43. opaque.addEventListener('click', function(){
  44. alert('We are so sorry.\nThe spot you are clicking on is nothing more than a crappy page overlay.\nPlease leave.');
  45. location.replace("https://www.youtube.com/");
  46. });
  47.  
  48.  
  49.  
  50.  
  51. </script>
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement