-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (49 loc) · 1.35 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
52
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0>
<title>Math-Art</title>
</head>
<body>
<div id="container">
<div id="sketch-board"></div>
<div id="control-panel"></div>
<div id="time"></div>
</div>
</body>
<style>
#container{
display: flex;
}
#sketch-board {
height: 100%;
width: 60%;
overflow-x: scroll;
float: left;
}
#control-panel {
border-radius: 10px;
height: 100%;
width: 400px;
}
#time {
border: 1px solid black;
height: 50px;
width: 100px;
}
.widget {
/* TODO: Show css skillz*/
}
</style>
<script src = "scripts/helper/logger.js"></script>
<script src = "scripts/helper/utils.js"></script>
<script src = "scripts/helper/patternType.js"></script>
<script src = "scripts/helper/generatorDefinition.js"></script>
<script src = "scripts/settings.js"></script>
<script src = "scripts/controls.js"></script>
<script src = "scripts/application.js"></script>
<script defer src = "scripts/main.js"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.1/p5.js"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.1/addons/p5.dom.js"></script>
</html>