mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-27 03:53:07 +00:00
a256ae2e6c
* working on getting actions to run * running all tests * run on CHROME only * Update test.yml * ignoring node_modules * updating typedocs * trying to ignore compiler errors * Update tsconfig.json * running doc tests in parallel * speeding up docs example tests * Update test.yml * testing README * 2 spaces instead of 4 * codecov * remove travis ci * adding token * updating codecov
74 lines
2.2 KiB
HTML
74 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Mixer</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<link rel="icon" type="image/png" sizes="174x174" href="./favicon.png">
|
|
|
|
<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"/>
|
|
<script src="../build/Tone.js"></script>
|
|
<script src="./js/tone-ui.js"></script>
|
|
<script src="./js/components.js"></script>
|
|
<style type="text/css">
|
|
#tracks {
|
|
display: flex;
|
|
}
|
|
#tracks tone-channel {
|
|
flex-grow: 1;
|
|
margin: 5px;
|
|
width: 20%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<tone-example label="Channel">
|
|
<div slot="explanation">
|
|
<a href="https://tonejs.github.io/docs/Channel">Tone.Channel</a> provides a simple channel interface. It allows for panning and volume changes as well as the ability to <a href="https://tonejs.github.io/docs/Solo">solo</a> (exclude audio in other Tone.Channels).
|
|
</div>
|
|
|
|
<tone-loader></tone-loader>
|
|
<div id="content">
|
|
<tone-play-toggle></tone-play-toggle>
|
|
</div>
|
|
</tone-example>
|
|
|
|
<script type="text/javascript">
|
|
function makeChannel(name, url, pan) {
|
|
const channel = new Tone.Channel({
|
|
pan
|
|
}).toDestination();
|
|
const player = new Tone.Player({
|
|
url: `https://tonejs.github.io/audio/berklee/${url}.mp3`,
|
|
loop: true
|
|
}).sync().start(0);
|
|
player.connect(channel);
|
|
|
|
// add a UI element
|
|
ui({
|
|
name,
|
|
tone: channel,
|
|
parent: document.querySelector("#content")
|
|
});
|
|
}
|
|
|
|
// create a meter on the destination node
|
|
const toneMeter = new Tone.Meter({ channelCount: 2 });
|
|
Tone.Destination.chain(toneMeter);
|
|
meter({
|
|
tone: toneMeter,
|
|
parent: document.querySelector("#content")
|
|
});
|
|
|
|
makeChannel("Guitar 0", "comping1", 1);
|
|
makeChannel("Guitar 1", "comping2", -1);
|
|
makeChannel("Guitar 2", "comping3", 0.25);
|
|
makeChannel("Guitar 3", "comping4", -0.25);
|
|
|
|
document.querySelector("tone-play-toggle").addEventListener("start", () => Tone.Transport.start());
|
|
document.querySelector("tone-play-toggle").addEventListener("stop", () => Tone.Transport.stop());
|
|
</script>
|
|
</body>
|
|
</html>
|