-
Notifications
You must be signed in to change notification settings - Fork 2
/
dashboard.html
58 lines (52 loc) · 1.93 KB
/
dashboard.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
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MIDI Comparison Tool</title>
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="lib/icons/css/fontello.css">
<link rel="stylesheet" href="dashboard.css">
</head>
<body>
<div class="container">
<div class="box input-file-pane">
<div id="input-file-form">
<input type="file" id="input-file">
<label for="input-file">Add MIDI</label>
</div>
<div id="input-file-list"></div>
</div>
<div class="box graph-pane master-graph-pane">
<div class="welcome-message">
Welcome to the MIDI Comparison Tool! To get started, add MIDI files using the pane on the left.
</div>
<svg id="notes-over-time"></svg>
</div>
<div class="box graph-pane note-frequency-graph-pane">
<svg id="note-frequency"></svg>
</div>
<div class="box graph-pane velocity-over-time-graph-pane">
<svg id="velocity-over-time"></svg>
</div>
<div class="box graph-view-buttons">
<span id="view-all" class="disabled-view-button">All</span>
<span id="view-notes" class="disabled-view-button">Notes</span>
<span id="view-frequency" class="disabled-view-button">Frequency</span>
<span id="view-velocity" class="disabled-view-button">Velocity</span>
</div>
</div>
<script src="lib/popper.min.js"></script>
<script src="lib/tippy.min.js"></script>
<script src="lib/d3.v5.min.js"></script>
<script src="lib/midi-parser.js"></script>
<script src="lib/midiplayer.min.js"></script>
<script src="lib/soundfont-player.min.js"></script>
<script src="js/Utils.js"></script>
<script src="js/MidiFilePane.js"></script>
<script src="js/NotesPlayedPane.js"></script>
<script src="js/NotesVelocityPane.js"></script>
<script src="js/NotesFrequencyPane.js"></script>
<script src="js/GraphViewPane.js"></script>
<script src="js/Dashboard.js"></script>
</body>
</html>