-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (38 loc) · 966 Bytes
/
index.html
File metadata and controls
44 lines (38 loc) · 966 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
* {
background-color: #000000;
margin: 0;
padding: 0;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
}
html {
height: 100%;
width: 100%;
}
canvas {
image-rendering: pixelated;
aspect-ratio: 1 / 1;
width: min(100vw, 100vh);
height: auto;
}
</style>
</head>
<body>
<script src="library/input.js"></script>
<script src="library/pure-math.js"></script>
<script src="library/raster.js"></script>
<script src="library/buffer.js"></script>
<script src="simple-model/particle.js"></script>
<script src="simple-model/simple-model.js"></script>
<script src="platform/browser-interface.js"></script>
</body>
</html>