Skip to content

Instantly share code, notes, and snippets.

@stranger26
Created December 26, 2016 19:06
Show Gist options
  • Save stranger26/395edfa1224dabb5c48f0f7c764c5879 to your computer and use it in GitHub Desktop.
Save stranger26/395edfa1224dabb5c48f0f7c764c5879 to your computer and use it in GitHub Desktop.
Simple Play button for Audio HTML5
<i class="fa fa-play rounded hollow cursor" onclick="!this.firstChild.paused?this.firstChild.pause():this.firstChild.play();">
<audio>
<source src="audio/whitenoise.mp3" type="audio/mpeg">
</audio>
</i>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment