Guest User

Untitled

a guest
Jan 15th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. </head>
  6.  
  7. <body>
  8.  
  9. <label id="info"></label>
  10. <video id="reproductor" controls></video>
  11.  
  12. <script>
  13. window.onload = function playlist(){
  14. var reproductor = document.getElementById("reproductor"),
  15. videos = ["video1", "video2"];
  16. info = document.getElementById("info");
  17.  
  18. info.innerHTML = "Vídeo: " + videos[0];
  19. reproductor.src = videos[0] + ".mp4";
  20. reproductor.play();
  21.  
  22. reproductor.addEventListener("ended", function() {
  23. var nombreActual = info.innerHTML.split(": ")[1];
  24. var actual = videos.indexOf(nombreActual);
  25. actual = actual == videos.length - 1 ? 0 : actual + 1;
  26. this.src = videos[actual] + ".mp4";
  27. info.innerHTML = "Vídeo: " + videos[actual];
  28. this.play();
  29. }, false);
  30. }
  31. </script>
  32.  
  33. </body>
Add Comment
Please, Sign In to add comment