-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (29 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./src/style.css">
<script src="./src/globals.js" defer ></script>
<script src="./src/index.js" defer type = "module"></script>
<title> FCG - Trabajo Final </title>
</head>
<body>
<div id = 'presentation'>
<h1>Seleccione un archivo de audio desde su ordenador:</h1>
<div><input type="file" id = "loadfile"></div>
</div>
<select name = "visualization" class = "invisible" id = "selector">
<option value = "frequency-1" > Frequency </option>
<option value = "osciloscope-1" > Osciloscope </option>
<!-- <option value = "growing-circle" > Sphere </option> -->
<option value = "frequency-3d"> Frequency 3d </option>
<option value = "frequency-heightmap"> Frequency Heightmap </option>
<option value = "time-frequency"> Time & Frequency Heightmap </option>
</select>
<audio src="" controls class = "invisible"></audio>
<!-- <canvas id = "visualization"></canvas> -->
<canvas id = "visualization-three" class = "visible"></canvas>
</body>
</html>