Tone.js/examples/index.html

31 lines
829 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<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">
//forward links with hashes
if (window.location.hash !== ""){
2017-03-26 20:39:19 +00:00
var 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
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>
</head>
<body>
<tone-example open>
<tone-explanation label="Examples">
Choose an example from the side panel.
</tone-explanation>
</tone-example>
2016-12-22 18:21:46 +00:00
</body>
</html>