mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-11 05:38:35 +00:00
19 lines
558 B
HTML
19 lines
558 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
</head>
|
|
<body>
|
|
<!-- <script src="../../packages/web/dist/index.js"></script> -->
|
|
<script src="https://unpkg.com/@strudel/web@1.0.3"></script>
|
|
|
|
<button id="play">play</button>
|
|
<button id="stop">stop</button>
|
|
<script>
|
|
strudel.initStrudel();
|
|
document.getElementById('play').addEventListener('click', () => evaluate('note("c a f e").jux(rev)'));
|
|
document.getElementById('stop').addEventListener('click', () => strudel.hush());
|
|
</script>
|
|
</body>
|
|
</html>
|