mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-11 21:58:37 +00:00
10 lines
364 B
HTML
10 lines
364 B
HTML
<!doctype html>
|
|
<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('play').addEventListener('stop', () => hush());
|
|
</script>
|