-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path02_hello_audio.html
50 lines (50 loc) · 1.26 KB
/
02_hello_audio.html
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
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello Canvas</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div>
<button id="start-audio-context-button">start audio context</button>
</div>
<div class="canvas-holder">
<canvas
id="toy-canvas"
width="512"
height="384"
></canvas>
</div>
<audio
src="tuning_fork_a4_440hz.mp3"
id="tuning-fork"
controls
loop
></audio>
<audio
src="goat_sneeze.mp3"
id="goat-sneeze"
controls
loop
></audio>
<audio
src="eeeee.mp3"
id="eeeee"
controls
loop
></audio>
<audio
src="https://root.nuclearpixel.com/music/acceptable_in_the_80s.mp3"
id="acceptable_in_the_80s"
controls
crossorigin="anonymous"
loop
></audio>
<h1>move your mouse!</h1>
</div>
<script src="02_hello_audio.js"></script>
</body>
</html>