-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (30 loc) · 1.03 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<link href="./style.css" rel="stylesheet" type="text/css" />
<title>Music Visualizer</title>
</head>
<body>
<canvas id="canvas"></canvas>
<button class="demo">Click Here To Start</button>
<h3 id="name"></h3>
<audio id="audio"></audio>
<div id="buttons">
<button id="play" onclick="document.getElementById('audio').play()">Play</button>
<button id="pause" onclick="document.getElementById('audio').pause()">Pause</button>
<button onclick="document.getElementById('audio').volume += 0.1">
Vol +
</button>
<button onclick="document.getElementById('audio').volume -= 0.1">
Vol -
</button>
<button id="fullScreen">FullScreen</button>
<button id="exitFullScreen">Exit</button>
<button id="next">Next</button>
</div>
<div id="background"></div>
<script src="./sound.js"></script>
</body>
</html>