forked from qiao/euphony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (40 loc) · 1.42 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Euphony</title>
<link href="./build/application.css" rel="stylesheet" />
<script src="./lib/Detector.js" type="text/javascript"></script>
<script type="text/javascript">
if (!Detector.webgl) {
window.location = './notsupported.html';
}
</script>
</head>
<body>
<div id="canvas"></div>
<div id="player">
<ul class="player-controls">
<li class="player-prev" ><i class="icon-step-backward"></i></li>
<li class="player-play" ><i class="icon-play"></i></li>
<li class="player-pause" style="display:none;"><i class="icon-pause"></i></li>
<li class="player-stop" ><i class="icon-stop"></i></li>
<li class="player-next" ><i class="icon-step-forward"></i></li>
</ul>
<div class="player-progress-container">
<div class="player-progress-bar"></div>
<span class="player-progress-text"></span>
</div>
<ul class="player-playlist-container nano">
<div class="content">
<ul class="player-playlist"></ul>
</div>
</ul>
</div>
<footer id="about">
Source code available on <a target="_blank" href="https://github.com/qiao/euphony">Github</a> <br>
Try to drag & drop your MIDI files to play
</footer>
<script src="./build/application.js" type="text/javascript"></script>
</body>
</html>