2014-10-22 22:49:42 +00:00
|
|
|
<!DOCTYPE html>
|
2014-09-03 18:54:46 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2014-10-22 22:49:42 +00:00
|
|
|
<meta charset="utf-8">
|
2016-01-30 21:18:28 +00:00
|
|
|
<title>FMSynth</title>
|
2014-09-03 18:54:46 +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">
|
2015-02-24 03:14:51 +00:00
|
|
|
|
2019-01-09 01:21:29 +00:00
|
|
|
<script src="https://unpkg.com/@webcomponents/webcomponentsjs@^2/webcomponents-bundle.js"></script>
|
|
|
|
<script src="../build/Tone.js"></script>
|
|
|
|
<script src="./js/tonejs-ui.js"></script>
|
2014-09-03 18:54:46 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2019-01-09 01:21:29 +00:00
|
|
|
<style>
|
|
|
|
tone-piano {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<tone-example>
|
|
|
|
<tone-explanation label="FMSynth">
|
|
|
|
<a href="https://tonejs.github.io/docs/FMSynth">Tone.FMSynth</a>
|
2015-06-27 22:02:55 +00:00
|
|
|
is composed of two
|
2019-01-09 01:21:29 +00:00
|
|
|
<a href="https://tonejs.github.io/docs/Synth">Tone.Synths</a>
|
2016-05-23 23:52:56 +00:00
|
|
|
where one Tone.Synth modulates the frequency of a second Tone.Synth.
|
2019-01-09 01:21:29 +00:00
|
|
|
</tone-explanation>
|
2014-09-03 18:54:46 +00:00
|
|
|
|
2019-01-09 01:21:29 +00:00
|
|
|
<tone-content>
|
|
|
|
<tone-piano></tone-piano>
|
|
|
|
<tone-fm-synth></tone-fm-synth>
|
|
|
|
</tone-content>
|
|
|
|
</tone-example>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
2016-01-30 21:18:28 +00:00
|
|
|
var synth = new Tone.FMSynth({
|
2015-12-05 18:20:53 +00:00
|
|
|
"modulationIndex" : 12.22,
|
2016-01-30 21:18:28 +00:00
|
|
|
"envelope" : {
|
|
|
|
"attack" : 0.01,
|
|
|
|
"decay" : 0.2
|
2015-12-05 18:20:53 +00:00
|
|
|
},
|
2016-01-30 21:18:28 +00:00
|
|
|
"modulation" : {
|
|
|
|
"type" : "square"
|
|
|
|
},
|
|
|
|
"modulationEnvelope" : {
|
|
|
|
"attack" : 0.2,
|
|
|
|
"decay" : 0.01
|
2015-12-05 18:20:53 +00:00
|
|
|
}
|
2015-06-27 21:25:01 +00:00
|
|
|
}).toMaster();
|
2014-09-03 18:54:46 +00:00
|
|
|
|
2019-01-09 01:21:29 +00:00
|
|
|
//bind the interface
|
|
|
|
document.querySelector("tone-piano").bind(synth);
|
|
|
|
document.querySelector("tone-fm-synth").bind(synth);
|
2014-09-03 18:54:46 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
2017-03-18 16:35:37 +00:00
|
|
|
</html>
|