-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (31 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Beatronome</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="icon" type="image/png" sizes="174x174" href="./content/favicon.png">
<!-- external libs -->
<script type="text/javascript" src="./scripts/tone.js/Tone.js"></script>
<script type="text/javascript" src="./scripts/jquery/jquery.min.js"></script>
<script type="text/javascript" src="./scripts/draggabilly/draggabilly.pkgd.js"></script>
<script type="text/javascript" src="./scripts/StartAudioContext/StartAudioContext.js"></script>
<script type="text/javascript" src="./scripts/nexusUI/nexusUI.js"></script>
<!-- app -->
<script type="text/javascript" src="./scripts/app/app.js"></script>
<link rel="stylesheet" type="text/css" href="./styles/beatronome.css">
</head>
<body>
<div id="Content">
<div id="Title">
Beatronome
</div>
<div>
<canvas nx="matrix" id="beatMatrix"></canvas>
</div>
<div id="clockDiv">
Go!
</div>
</div>
</body>
</html>