Skip to content

Instantly share code, notes, and snippets.

@allenfantasy
Last active January 1, 2016 04:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save allenfantasy/8092963 to your computer and use it in GitHub Desktop.
Save allenfantasy/8092963 to your computer and use it in GitHub Desktop.
audio {
display: none;
}
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<!-- support multi browser -->
<audio controls="controls">
<source src="http://www.w3school.com.cn/i/horse.ogg" type="audio/ogg">
<source src="http://www.w3school.com.cn/i/horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<button>Click me to play!</button>
</body>
</html>
window.onload = function() {
var button = document.getElementsByTagName("button")[0];
var audio = document.getElementsByTagName("audio")[0];
button.onclick = function() {
audio.play();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment