-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (36 loc) · 1.75 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
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>3D Sheet Music Animation</title>
<link href="https://fonts.googleapis.com/css?family=Didact+Gothic|Sawarabi+Gothic&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="css/bounce.css">
<!-- TODO: import THREE as module -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/104/three.min.js"></script>
<script src="vendor/Cannon/cannon.min.js"></script>
<script src="vendor/Cannon/CannonDebugRenderer.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/echarts/4.6.0/echarts.min.js"></script>
<script src="vendor/echarts-gl.min.js"></script>
</head>
<body>
<div id="controls-container" class="hidden">
<div class="toggle-wrapper">
<button id="settings-toggle-btn" class="btn hidden-active"><i class="fa fa-cog" aria-hidden="true"></i></button>
</div>
<section id="settings-container" class="hidden">
<button type="button" class="btn btn-light" id="btn-drums-1"><span class="fa fa-headphones" aria-hidden="true"></span>Drum Loop</button>
<div class="play-wrapper">
<a class="play"></span>Stop</a>
</div>
</section>
</div>
<div id="dashboard-container" class="dashboard-container">
<div id="chart" class="echarts-entry" style="width: 400px; height: 400px;"></div>
</div>
<div id="img-container" class="img-container">
<img src="assets/sheet-music/twinkle-star_sheet-music.png" alt="sheet music">
</div>
<script src="dist/bundle.js"></script>
</body>
</html>