2
0
Fork 0
mirror of https://github.com/Tonejs/Tone.js synced 2025-02-13 03:03:31 +00:00
Tone.js/examples/index.html
2020-07-17 17:36:42 -07:00

32 lines
997 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tone.js Examples</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 type="text/javascript">
//forward links with hashes
if (window.location.hash !== ""){
var hash = window.location.hash.substring(1);
window.location.href = window.location.pathname+hash;
}
</script>
<script src="https://unpkg.com/@webcomponents/webcomponentsjs@^2/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="../../examples/dist/tone-gui.js"></script>
<script src="../../examples/dist/components.js"></script>
</head>
<body>
<tone-example label="Examples" open>
<div slot="explanation">
Choose an example from the side panel.
</div>
</tone-example>
</body>
</html>