-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 1.08 KB
/
index.html
File metadata and controls
28 lines (28 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="assets/player.png" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
<title>ISOMETRIC</title>
</head>
<body>
<canvas iso-background></canvas>
<!-- player canvas -->
<canvas iso-player style="z-index: -9;background-color: transparent"></canvas>
<div class="editor">
<!-- random -->
<button id="random_map_btn">random map</button>
<button id="random_block_map_btn">random block map</button>
<button id="random_tiled_map_btn">random tiled map</button>
<!-- inputs -->
<hr>
<input disabled type="number" id="map_width_input" placeholder="map width" min="0">
<input disabled type="number" id="tile_width_input" placeholder="tile width" min="0">
<button disabled>generate map</button>
</div>
<script src="js/main.js" type="module"></script>
</body>
</html>