Skip to content

Instantly share code, notes, and snippets.

@alchzh
Created January 6, 2017 21:43
Show Gist options
  • Save alchzh/5ec6d3cf726e84a6986931e046b99214 to your computer and use it in GitHub Desktop.
Save alchzh/5ec6d3cf726e84a6986931e046b99214 to your computer and use it in GitHub Desktop.
stuff
<html>
<head>
</head>
<body>
<script>
myAudio = new Audio('http://mc.artofproblemsolving.com/sounds/intro.ogg');
myAudio.addEventListener('ended', function() {
this.currentTime = 0;
this.play();
}, false);
myAudio.play();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment