Tone.js/examples/simpleHtml.html

25 lines
587 B
HTML
Raw Normal View History

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<title>Simple HTML</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- LOAD Tone.js from unpkg -->
2021-07-12 12:31:17 +00:00
<script src="https://unpkg.com/tone"></script>
<script>
function playNote() {
// create a synth
2020-07-19 00:20:19 +00:00
const synth = new Tone.Synth().toDestination();
// play a note from that synth
synth.triggerAttackRelease("C4", "8n");
}
</script>
</head>
<body>
<h1>Simple HTML5 Tone.js Demo</h1>
<button onclick="playNote()">Click me to play note!</button>
</body>
</html>