-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
31 lines (29 loc) · 996 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
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lurkers.io Map Editor</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="toolbar">
<button id="clear">Clear</button>
<button id="save">Export</button>
Z <input type="range" min="8" step="2" max="64" value="16" class="slider" id="pixelRange">
W <input type="number" id="width" name="width" min="8" value="96" max="320" />
H <input type="number" id="height" name="height" min="8" value="96" max="320" />
<button id="updateWH">Update W & H</button>
</div>
<div class="canvas-container" id="canvas-container">
</div>
<div class="palette" id="palette">
</div>
<div class="hidden" style="display:none;">
<canvas id="exportCanvas"></canvas>
</div>
<!--The JSON file-->
<script src="frames.js" type="text/javascript"></script>
<script src="script.js"></script>
</body>
</html>