mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-11 13:48:34 +00:00
11 lines
386 B
HTML
11 lines
386 B
HTML
<!DOCTYPE html>
|
|
<button id="play">play</button>
|
|
<button id="stop">stop</button>
|
|
<script type="module">
|
|
import { initStrudel } from 'https://cdn.skypack.dev/@strudel/web@0.8.2';
|
|
|
|
initStrudel();
|
|
document.getElementById('play').addEventListener('click', () => evaluate('note("c a f e").jux(rev)'));
|
|
document.getElementById('play').addEventListener('stop', () => hush());
|
|
</script>
|