-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (29 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
<!DOCTYPE html>
<html>
<head>
<title>Shockpulse</title>
<link rel="icon" href="assets/icon.ico">
<link href="https://fonts.googleapis.com/css?family=Nanum+Gothic" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bungee" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:100" rel="stylesheet">
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<canvas></canvas>
<div id="panel">
<input id="file" type="file">
<label for='file'>Upload</label>
<a id="play">▶ | ❙❙</a>
<div id='progress'><div id='pI'></div></div>
</div>
<div id="nowplaying"></div>
<div id="tr">
<div id="about" class='inactive'>
Shockpulse is an audio visializer created by Battlesquid. It was built using Pixi.JS. Check out the repository <a href="https://github.com/Battlesquid/shockpulse" target="_blank">here</a>.
</div>
<p id="title">Shockpulse </p>
</div>
<audio id="audio" src='assets/hollah.mp3'></audio>
<script src="assets/script.js"></script>
</body>
</html>