Guest User

Untitled

a guest
Dec 11th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. window.onload=function(){
  2. var videoList = [
  3. 'a',
  4. 'c',
  5. 'd',
  6. 'e',
  7. 'f',
  8. 'g',
  9. 'h',
  10. 'i',
  11. 'j',
  12. 'k',
  13. 'l'
  14. ];
  15. $("#splash-vid").html("<video id='bgvid' autoplay muted id='bgvid' loop><source src='s/" + videoList[Math.floor(Math.random() * videoList.length + 1)] + ".mp4' type='video/mp4'>");
  16. }
  17.  
  18. if (window.chrome)
  19. $("[type=video\/mp4]").each(function()
  20. {
  21. $(this).attr("src", $(this).attr("src").replace(".mp4", ".webm"));
  22. $(this).attr("src", $(this).attr("src").replace("/mp4", "/webm"));
  23. });}
Add Comment
Please, Sign In to add comment