Tone.js/examples/oscillator.html

54 lines
1.5 KiB
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Oscillator</title>
2014-08-28 04:39:17 +00:00
2019-01-09 01:21:29 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="icon" type="image/png" sizes="174x174" href="./favicon.png">
2020-07-18 00:58:09 +00:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/2.4.3/webcomponents-bundle.js"></script>
<link href="https://fonts.googleapis.com/css?family=Material+Icons&display=block" rel="stylesheet"/>
2019-01-09 01:21:29 +00:00
<script src="../build/Tone.js"></script>
2020-07-18 00:58:09 +00:00
<script src="./js/tone-ui.js"></script>
<script src="./js/components.js"></script>
2019-01-09 01:21:29 +00:00
<style type="text/css">
tone-play-toggle {
margin-bottom: 10px;
}
</style>
</head>
<body>
<tone-example label="Oscillator">
<div slot="explanation">
2019-01-09 01:21:29 +00:00
The oscillator has 4 basic types which can be altered by setting the number
of partials and partials array.
2015-06-27 22:02:55 +00:00
<br><br>
2019-01-09 01:21:29 +00:00
<a href="https://tonejs.github.io/docs/Oscillator">Tone.Oscillator</a> docs.
</div>
2019-01-09 01:21:29 +00:00
<div id="content">
<tone-momentary-button></tone-momentary-button>
</div>
2019-01-09 01:21:29 +00:00
</tone-example>
<script type="text/javascript">
2020-07-19 00:20:19 +00:00
const osc = new Tone.Oscillator({
type: "square",
frequency: 440,
volume: -16
}).toDestination();
ui({
tone: osc,
2020-07-19 00:20:19 +00:00
parent: document.querySelector("#content")
});
2015-06-08 14:41:45 +00:00
2020-07-19 00:20:19 +00:00
// bind the interface
document.querySelector("tone-momentary-button").addEventListener("down", () => osc.start());
document.querySelector("tone-momentary-button").addEventListener("up", () => osc.stop());
</script>
</body>
</html>