-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
26 lines (22 loc) · 851 Bytes
/
game.html
File metadata and controls
26 lines (22 loc) · 851 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Player in HTML Map</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/game.css">
</head>
<body>
</p><strong>Player in HTML Map: </strong>
Use WASD keys to move your character.<br>
Keys 1234 to select current floor type. Click on the map to paint the floor.</p>
<div id="div_view" class="view"></div>
<br>
<small><a href="https://github.com/lucianoaibar/PlayerInHTMLMap">https://github.com/lucianoaibar/PlayerInHTMLMap</a> - <button id="btn_download_map">Download Map</button></button></small>
<script src="map.js"></script>
<script src="js/keyboard.min.js"></script>
<script src="js/download.js"></script>
<script src="js/game.js"></script>
</body>
</html>