blob: f6fb5e7c073d0e42d049b5f4e51145d5e5dddd23 (
plain)
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
|
<!DOCTYPE html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
</head>
<body>
<pre id=state></pre>
<button id="start" onclick="start_webaudio()">Start</button>
<button id="stop" onclick="stop_webaudio()">Stop</button>
<script type="text/javascript">
var ac = new AudioContext();
var dest = ac.destination;
var osc = ac.createOscillator();
osc.connect(dest);
osc.start();
document.querySelector("pre").innerText = ac.state;
ac.onstatechange = function() {
document.querySelector("pre").innerText = ac.state;
}
function start_webaudio() {
ac.resume();
}
function stop_webaudio() {
ac.suspend();
}
</script>
</body>
|