defango

view-source:https://1711141131131.xyz/

Jan 6th, 2019
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.72 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  4. <title>~`</title>
  5. </head>
  6. <style> video {
  7.     display: block;
  8.     margin-bottom: 1em;
  9. } </style>
  10. <br>
  11. <video width="100%" height="100%" controls style="background:black">
  12.   <source src="CicadaBlack.mp4" type="video/mp4" />
  13. </video>
  14. </body>
  15. </html>
  16. <script>
  17. var myvid = document.getElementById('myvideo');
  18. var myvids = [
  19.   "CicadaBlack.mp4",
  20.   "CicadaWhite.mp4"
  21.   ];
  22. var activeVideo = 0;
  23.  
  24. myvid.addEventListener('ended', function(e) {
  25.   // update the new active video index
  26.   activeVideo = (++activeVideo) % myvids.length;
  27.  
  28.   // update the video source and play
  29.   myvid.src = myvids[activeVideo];
  30.   myvid.play();
  31. });
  32. </script>
Add Comment
Please, Sign In to add comment