2014-10-22 22:49:42 +00:00
|
|
|
<!DOCTYPE html>
|
2014-06-23 17:29:22 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2014-10-22 22:49:42 +00:00
|
|
|
<meta charset="utf-8">
|
2019-01-09 01:21:29 +00:00
|
|
|
<title>Tone.js Examples</title>
|
2014-09-09 19:30:53 +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-26 16:25:16 +00:00
|
|
|
|
2019-01-09 01:21:29 +00:00
|
|
|
<script type="text/javascript">
|
2020-07-19 00:20:19 +00:00
|
|
|
// forward links with hashes
|
|
|
|
if (window.location.hash !== "") {
|
|
|
|
const hash = window.location.hash.substring(1);
|
2019-01-09 01:21:29 +00:00
|
|
|
window.location.href = window.location.pathname+hash;
|
2017-03-26 20:39:19 +00:00
|
|
|
}
|
2019-01-09 01:21:29 +00:00
|
|
|
</script>
|
2015-06-27 22:10:18 +00:00
|
|
|
|
2020-07-18 00:58:09 +00:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/2.4.3/webcomponents-bundle.js"></script>
|
2020-07-18 00:36:42 +00:00
|
|
|
<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
|
|
|
</head>
|
|
|
|
<body>
|
2020-07-18 00:36:42 +00:00
|
|
|
<tone-example label="Examples" open>
|
|
|
|
<div slot="explanation">
|
2019-01-09 01:21:29 +00:00
|
|
|
Choose an example from the side panel.
|
2020-07-18 00:36:42 +00:00
|
|
|
</div>
|
2019-01-09 01:21:29 +00:00
|
|
|
</tone-example>
|
2016-12-22 18:21:46 +00:00
|
|
|
|
2014-06-23 17:29:22 +00:00
|
|
|
</body>
|
2017-03-18 16:35:37 +00:00
|
|
|
</html>
|