-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdawn.html
61 lines (57 loc) · 2.63 KB
/
dawn.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
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>dawn</title>
<link href="./public/dawn_stylesheet.css" type="text/css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Sacramento|Ubuntu:300,400" rel="stylesheet">
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="./public/dawn-jquery.js"></script>
</head>
<body>
<header>
<div class="menu"></div>
<h1>dawn</h1>
<div class="media_container">
<a href="https://github.com/jenniferemshepherd/dawn" target="_blank"><img src="./public/resources/github_logo.png"></a>
<a href="https://medium.com/@dawnmakersacademy" target="_blank"><img src="./public/resources/medium_logo.png"></a>
</div>
</header>
<div class="main_container">
<div id="canvas_container"></div>
</div>
<script src="./node_modules/matter-js/build/matter.js"></script>
<script src="./node_modules/p5/lib/p5.js"></script>
<script src="./node_modules/p5/lib/addons/p5.sound.js"></script>
<script src="./controllers/event-controller.js"></script>
<script src="./controllers/simulation.js"></script>
<script src="./decorators/decorated-engine.js"></script>
<script src="./decorators/decorated-render.js"></script>
<script src="./decorators/decorated-runner.js"></script>
<script src="./inheritors/colour-inheritor.js"></script>
<script src="./inheritors/position-inheritor.js"></script>
<script src="./inheritors/shape-inheritor.js"></script>
<script src="./listeners/animate-cells.js"></script>
<script src="./listeners/birth-cell.js"></script>
<script src="./listeners/fade-cells.js"></script>
<script src="./listeners/grow-cells.js"></script>
<script src="./listeners/kill-cells.js"></script>
<script src="./models/cell.js"></script>
<script src="./models/cell-factory.js"></script>
<script src="./models/cell-repository.js"></script>
<script src="./properties/age.js"></script>
<script src="./properties/gait.js"></script>
<script src="./properties/voice.js"></script>
<script src="./services/mutator.js"></script>
<script src="./services/rgb-formatter.js"></script>
<script src="./dawn.js"></script>
<div class="buttons" style="text-align:center;">
<button id="start" type="button">start</button>
<button id="stop" type="button">stop</button>
<button id="pause" type="button">pause</button>
<button id="resume" type="button">resume</button>
<button id="refresh" type="button">refresh</button>
<button id="wireframe" type="button">wireframe toggle</button>
</div>
</body>
</html>