Created
December 3, 2014 14:12
-
-
Save quagliato/e367f8cac4c3eac349e5 to your computer and use it in GitHub Desktop.
Audio HTML5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<audio id="audio_id" autoplay loop preload> | |
<source src="mp3file.mp3" type="audio/mpeg"> | |
</audio> | |
<!--player--> | |
<div id="player"> | |
<a onclick="document.getElementById('audio_id').play()">play</a> / | |
<a onclick="document.getElementById('audio_id').pause()">pause</a> | |
</div> | |
<!--/player--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment