Guest User

Untitled

a guest
Sep 9th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.62 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>Buttology</title>
  4.         <script>
  5.         var vid = document.getElementById("myVid");
  6.         function setHalfVolume() {
  7.             vid.volume = 0.2;
  8.         }
  9.         </script>
  10.     </head>
  11.     <body style="background-color:black">
  12.         <center>
  13.             <p style="color:white"><font size=4 face="Arial">Please stand by</font></p>
  14.             <video
  15.                 id="myVid"
  16.                 src="/assets/videos/buttology.webm"
  17.                 width="1280"
  18.                 height="720"
  19.                 type="video/webm"  
  20.                 autoplay="autoplay"
  21.                 loop="loop"
  22.                 onplay="setHalfVolume()">
  23.                 Your browser does not support the <code>video</code> element.
  24.             </video>
  25.         </center>
  26.     </body>
  27. </html>
Add Comment
Please, Sign In to add comment