Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.49 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. embed {
  5.   border:1px solid #000;
  6. }
  7. </style>
  8. <script>
  9. document.addEventListener("DOMContentLoaded", playIntro, false);
  10.  
  11. function playIntro() {
  12. var embed = document.getElementById("GAME");
  13. var setto = embed.src;
  14. embed.src = 'Intro.mp4';
  15. GameNow(setto);
  16. }
  17.  
  18. function GameNow(setto) {
  19. var embed = document.getElementById("GAME");
  20. setTimeout(function(){ embed.src = setto; }, 2000);
  21.  
  22. }
  23. </script>
  24. </head>
  25. <body>
  26. <embed id="GAME" src="game.swf">
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement