-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D Audio Visualizer</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
<link rel="icon" href="assets/3daudiofavicon.png" type="image/x-icon">
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/102/three.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/simplex-noise/2.3.0/simplex-noise.min.js"></script>
<div id="header">
<label for="audio" id="label">Select File</label>
<input type="file" id="audio" accept=".mp3">
<div class="text">Click the ball to play/pause</div>
</div>
<div id="visualizer"></div>
<footer>
<a href="https://github.com/Percobain/3d-audio-visualizer" target="_blank" rel="noopener noreferrer">
<img src="assets/github.svg" alt="GitHub" />
</a>
</footer>
</body>
</html>