-
Notifications
You must be signed in to change notification settings - Fork 1
/
run.js
38 lines (35 loc) · 1.21 KB
/
run.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"use strict";
document.body.append(
GSUcreateDiv( { id: "title" },
GSUcreateSpan( null, "Soundbox" ),
GSUcreateSpan( null, "by GridSound" ),
),
GSUcreateDiv( { id: "niceBorder" },
GSUcreateDiv( { id: "mySoundbox" } ),
),
GSUcreateDiv( { id: "btns" },
GSUcreateInput( { id: "gain", type: "range", name: "gain", min: 0, max: 100, value: 100 } ),
GSUcreateLabel( null,
GSUcreateInput( { id: "stopItself", type: "checkbox", checked: true } ),
GSUcreateSpan( null, "stop itself" ),
),
GSUcreateElement( "gsui-com-button", { id: "clear", text: "clear" } ),
),
GSUcreateDiv( { id: "foot" },
GSUcreateSpan( { id: "copyright" },
"© 2024 ",
GSUcreateAExt( { href: "https://gridsound.com" }, "gridsound.com" ),
" all rights reserved",
),
),
);
const el = document.querySelector( "#mySoundbox" );
const elGain = document.querySelector( "#gain" );
const elClear = document.querySelector( "#clear" );
const elStopItself = document.querySelector( "#stopItself" );
const sndbx = new GSSoundbox();
sndbx.init( el );
elGain.oninput = () => sndbx.setGain( elGain.value / 100 );
elClear.onclick = () => sndbx.clear();
elStopItself.onchange = () => sndbx.stopItself( elStopItself.checked );
elStopItself.onchange();