-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (40 loc) · 1.41 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Orbital</title>
<script>window.TONE_SILENCE_VERSION_LOGGING = true;</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="https://code.createjs.com/createjs-2015.11.26.min.js"></script>
<script src="https://code.createjs.com/tweenjs-0.6.2.min.js"></script>
<script src="./bundle.js" charset="utf-8"></script>
<link rel="shortcut icon" type="image/png" href="img/favicon1.png"/>
<link rel="stylesheet" href="display.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Audiowide" rel="stylesheet">
</head>
<body>
<main>
<h1>Orbital</h1>
<canvas id="canvas" width="730" height="730"></canvas>
<div id="control">
<form class="measures">
<h2>Measures:</h2>
<button class="selected" value="1">1</button>
<button value="2">2</button>
<button value="4">4</button>
<button value="8">8</button>
</form>
<form class="action">
<button id="record">Play</button>
<button id="reset">Reset</button>
</form>
<form class="tempo" action="index.html" method="post">
<h2>Tempo:</h2>
<input type="number" value="72" min="40" max="350" />
</form>
</div>
</main>
<aside>
</aside>
</body>
</html>