-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (90 loc) · 2.92 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
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--Import Google Icon Font-->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!--Import materialize.css-->
<link
type="text/css"
rel="stylesheet"
href="node_modules/materialize-css/dist/css/materialize.css"
media="screen,projection"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/x-icon" href="./images/GoldRush.png" />
<title>Gold Rush</title>
</head>
<body>
<div id="container">
<div class="playground initial-game">
<script id="player-template" type="text/x-handlebars-template">
{{#each matrix}}
{{#each this}}
{{#ifEmpty this}}
<div class='cell'></div>
{{/ifEmpty}}
{{#ifCoin this}}
<div class='cell'>
<div class='coin'></div>
</div>
{{/ifCoin}}
{{#ifWall this}}
<div class='cell'>
<i class='wall fas fa-th fa-4x'></i>
</div>
{{/ifWall}}
{{#ifPlayer1 this}}
<div class='cell'>
<i class='player1 fas fa-ghost fa-3x'></i>
</div>
{{/ifPlayer1}}
{{#ifPlayer2 this}}
<div class='cell'>
<div><i class='player2 fas fa-ghost fa-3x'></i></div>
</div>
{{/ifPlayer2}}
{{/each}}
{{/each}}
</script>
</div>
<div class="displayPlayers">
<div>Player1 Score: <span id="playerOne">0</span></div>
<div>Player2 Score: <span id="playerTwo">0</span></div>
</div>
<div class="startTheGame">
<button
class="btn waves-effect waves-light"
type="submit"
name="action"
id="startBtn"
>
Start The Game
<i class="material-icons right">send</i>
</button>
</div>
</div>
<script src="node_modules/handlebars/dist/handlebars.js"></script>
<script src="./JS/Handlebar-Helper.js"></script>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script
type="text/javascript"
src="node_modules/materialize-css/dist/js/materialize.js"
></script>
<script src="./JS/Matrix.js"></script>
<script src="./JS/GoldRush.js"></script>
<script src="./JS/Renderer.js"></script>
<script src="./JS/main.js"></script>
</body>
</html>