-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 842 Bytes
/
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
<style>
*{
padding: 0;
margin: 0;
image-rendering: pixelated;
background: #0E0E0E;
}
</style>
<body>
<meta utf8>
<input id="zoom" min=1 value=1 max=100 type='range' oninput="let zoom = document.getElementById('zoom').value" style="
margin: 10px;
margin-top: 100px;
position: fixed;
z-index: 10;
height: 10%;
width: 15%;
transition: background 450ms ease-in;
border-radius: 25px;"></input>
<canvas onclick="set()" style="position: fixed; image-rendering: pixelated;"></canvas>
</body>
<script src = "./scripts/Global.js"></script>
<script src = "./scripts/Mathf.js" ></script>
<script src = "./scripts/Draw.js"></script>
<script src = "./scripts/TouchHandler.js"></script>
<script src = "./scripts/World.js"></script>
<script src = "./scripts/Projector.js"></script>
<script src = "./main.js" ></script>