-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
48 lines (46 loc) · 1.39 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
<html>
<head>
<title>gull</title>
<script src="./node_modules/socket.io-client/dist/socket.io.js"></script>
<script src="./node_modules/tone/build/Tone.js"></script>
<style>
body {
background: black;
font-family: 'Courier New', Courier, monospace;
}
.sample {
color: white;
padding: 10px;
}
#ui {
float:left;
border-right: 1px solid white;
}
#editor {
margin: 10px;
background: black;
color: white;
border: 0;
font-size: 14px;
}
#editor:focus {
outline: 0;
background-color: #050505;
}
#canvas-editor {
background: black;
}
</style>
</head>
<body>
<div id="ui"></div>
<canvas id="canvas-editor"></canvas>
<script src="./client/constants.js"></script>
<script src="./client/utils.js"></script>
<script src="./client/listener.js"></script>
<script src="./client/effects.js"></script>
<script src="./client/machine.js"></script>
<script src="./client/editor.js"></script>
<script src="./client.js"></script>
</body>
</html>