-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (74 loc) · 2.4 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<div class="play">
<h1>Welcome to<br /><span>Maze Game</span></h1>
<button>Play Game</button>
</div>
<!--<button class="create">Create Level</button>-->
<button class="menu">Menu</button>
<div class="choose-map">
<h1>Choose the map</h1>
<div>
<button value="map1" onclick="setGame(map1);">
<h2>Map 1</h2>
<img src="assets/map1.png" />
</button>
</div>
<div>
<button value="map2" onclick="setGame(map2);">
<h2>Map 2</h2>
<img src="assets/map2.png" />
</button>
</div>
<div class="big-map">
<button value="map3" onclick="setGame(map3);">
<h2>Map 3</h2>
<img src="assets/map3-l.png" />
</button>
</div>
</div>
<div class="game">
<h1>Use arrows or WASD to move your point</h1>
<div class="win">
<h3>Congratulations!</h3>
<img src="assets/exit-man.png" />
<p>You found a way out</p>
</div>
<div class="app-box">
</div>
<div class="location-prev"></div>
<div class="location-curr"></div>
<div class="chosen-points"></div>
</div>
<!--
<div class="create-map">
<h1>Choose type of elemtent and click on the map element</h1>
<div class="demensions">
<span>X:</span><input type="number" class="x-value">
<span>Y:</span><input type="number" class="y-value">
<button class="create-button">Create</button>
</div>
<div class="paint-board">
<div class="el player"></div>
<div class="el wall"></div>
<div class="el ground"></div>
</div>
<div class="map-box">
<button class="save">Save</button>
</div>
</div>
-->
</body>
</html>
<script src="main.js"></script>
<script src="page-logic.js"></script>
<script src="active-styling.js"></script>
<script src="create-map.js"></script>