-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·52 lines (52 loc) · 2.2 KB
/
index.html
File metadata and controls
executable file
·52 lines (52 loc) · 2.2 KB
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
51
52
<!DOCTYPE html>
<!--
Audiovisualization using the html canvas element.
©2017, Dominik Hofacker
https://www.behance.net/dominikhofacker
Please consider supporting this project on behance:
https://www.behance.net/gallery/49260123/Web-Audio-Visualization
-->
<html>
<head>
<meta charset="utf-8">
<meta content="IE=8" http-equiv="X-UA-Compatible">
<title>Web GL Audio Visualizer – Dominik Hofacker</title>
<meta name="viewport" content="width=device-width">
<!-- Das favicon.ico und das apple-touch-icon.png in das root Verzeichnis -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/animate.css">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="src/three.min.js"></script>
<script src="src/OBJLoader.js"></script>
<script src="src/OrbitControls.js"></script>
<script src="src/bufferloader.js"></script>
<script src="src/id3-minimized.js"></script>
<script src="src/audiovisualisierung.js"></script>
</head>
<body>
<div id="button_wrapper">
<input type="file" name="file" id="file" class="inputfile" onchange="handleFiles(this.files)"/>
<label for="file">Choose file</label>
<div class="button" id="sample" onclick="playSample()">Play sample file</div>
</div>
<!--<div class="label">This music visualizer may be harmful to viewers who are prone to epilepsy. Viewer discretion is advised.</div>-->
<div id="loading_screen">
<div id="loading_wrapper">
<div class="sk-folding-cube">
<div class="sk-cube1 sk-cube"></div>
<div class="sk-cube2 sk-cube"></div>
<div class="sk-cube4 sk-cube"></div>
<div class="sk-cube3 sk-cube"></div>
</div>
<div class="label">Loading...</div>
</div>
</div>
<div id="viewer_discretion"></div>
<a href="https://www.behance.net/dominikhofacker" onclick="window.open('https://www.behance.net/dominikhofacker')">
<div id="logo"></div>
</a>
</body>
</html>