Advertisement
Guest User

ssdsds

a guest
Jul 29th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. </head>
  5.  
  6. <script>
  7. function Func1()
  8. {
  9. document.getElementById('audio').play();
  10. }
  11.  
  12. function Func1Delay()
  13. {
  14. setTimeout("Func1()", 8000);
  15. }
  16. </script>
  17.  
  18. <body onload="Func1Delay()">
  19.  
  20. <audio controls="controls" id="audio">
  21. <source src="http://localhost/game/splash.mp3" type="audio/mp3" />
  22. </audio>
  23.  
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement