-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
284 lines (281 loc) · 7.63 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<!DOCTYPE html>
<html>
<head>
<title> Takuzu </title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- CSS -->
<link rel="stylesheet" href="css/helper.css" />
<link rel="stylesheet" href="css/faces.css" />
<link rel="stylesheet" href="css/elements.css" />
<link rel="stylesheet" href="css/table.css" />
<link rel="stylesheet" href="css/global.css" />
<link rel="stylesheet" href="vendor/jquery-ui.css">
<!-- Icon and Fonts -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="css/fonts.css" />
</head>
<body>
<!-- The Game "Card" -->
<div id="card">
<!-- The Help side. Here I explain the rules and controls. -->
<div id="help" class="side rotated">
<h1 class="cursor">Takuzu!</h1>
<!-- Navigation -->
<div class="buttonPlacer round-button TR">
<div class="round-button-circle">
<p class="round-button flipL cursor">G</p>
</div>
<p class="ttl g">Game</p>
</div>
<!-- Content -->
<div id="rules">
<h2>Rules:</h2>
<ol>
<li>Each box should contain a zero or a one.</li>
<li>No more than two similar numbers next to or below each other are allowed.</li>
<li>Each row and each column should contain an equal number of zeros and ones.</li>
<li>Each row is unique and each column is unique.</li>
</ol>
</div>
<div id="howto">
<h2>How-To:</h2>
<ul>
<li>Tap a cell to toggle the value.</li>
<li>When a row/collumn is red, there is an error.</li>
<li>Fill the board with no errors to win!</li>
</ul>
</div>
</div>
<!-- The Game side. Here the game will be displayed. -->
<div id="game" class="side">
<!-- The face for the game -->
<div class="thegamecard">
<h1 class="cursor">Takuzu!</h1>
<!-- Navigation -->
<div class="buttonPlacer round-button TL">
<div class="round-button-circle">
<p class="round-button flipL cursor">M</p>
</div>
<p class="ttl m">Menu</p>
</div>
<div class="buttonPlacer round-button TR">
<div class="round-button-circle">
<p class="round-button flipR cursor">H</p>
</div>
<p class="ttl h">Help</p>
</div>
<!-- Info -->
<p id="ib"><span class="diff"></span> - <span class="lvl"></span></p>
<!-- The gameboard -->
<table>
<tr class="row">
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
</tr>
<tr class="row">
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
</tr>
<tr class="row">
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
</tr>
<tr class="row">
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
</tr>
<tr class="row">
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
</tr>
<tr class="row">
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
<td class="cursor">
<p class="cell"></p>
</td>
</tr>
</table>
<!-- Info -->
<div id="info">
<p>Todo: <span id="numEmptyCells"></span></p>
</div>
</div>
<!-- A overlapping Victory face -->
<div id="victory" class="cursor">
<div>
<p class="title">Good job!</p>
<p><span class="diff"></span> - <span class="lvl"></span>: Complete!</p>
</div>
</div>
<!-- A overlapping Completion face -->
<div id="completion" class="cursor">
<div>
<p class="title">WOW!!</p>
<p>You have completed the entire game! Thank you for playing! By clicking this your progress will be reset.</p>
</div>
</div>
</div>
<!-- The Menu and Settings side. -->
<div id="menu" class="side rotated">
<h1 class="cursor">Takuzu!</h1>
<!-- Navigation -->
<div class="buttonPlacer round-button TR">
<div class="round-button-circle">
<p class="round-button flipR cursor">G</p>
</div>
<p class="ttl g">Game</p>
</div>
<!-- Subitem: LevelSelect -->
<div class="sublevel">
<h2>Level</h2>
<div>
<fieldset>
<select id="selDiff">
<option selected="selected">Easy</option>
<option>Normal</option>
<option>Hard</option>
<option>VHard</option>
</select>
<input id="spnrLvl">
<button class="btnRndm">Rnd</button>
</fieldset>
</div>
</div>
<!-- Subitem: Statistics -->
<div class="sublevel">
<h2>Stats</h2>
<div>
<p>Easy <span id="easyStat" class="stat subStat"></span>%, Normal <span id="nrmlStat" class="stat subStat"></span>%,</p>
</div>
<div>
<p>Hard <span id="hrdStat" class="stat subStat"></span>%, V. Hard <span id="vhrdStat" class="stat subStat"></span>%</p>
</div>
<div class="bold">
<p>Total <span id="ttlStat" class="stat"></span>%</p>
</div>
<p class="deleteProgress cursor">Click this to delete ALL progress.</p>
</div>
<!-- Subitem: Settings -->
<div class="sublevel">
<h2>Settings</h2>
<fieldset>
<legend>Sound settings</legend>
<label for="chbxM">Music</label>
<input type="checkbox" name="chbxM" id="chbxM" checked="checked">
<label for="chbxS">SFX</label>
<input type="checkbox" name="chbxS" id="chbxS" checked="checked">
</fieldset>
<p><a class="credit" href="https://www.looperman.com/loops/detail/115700/the-sound-of-the-past-by-fanto8bc-free-100bpm-ambient-synth-loop">Music by Fanto8BC</a></p>
</div>
</div>
</div>
<!-- A Message when the screen is to small -->
<div id="toSmall">
<p>Display is too small.</p>
<p>Please pick a bigger screen.</p>
</div>
<!-- Footer -->
<footer>
<p>Made by Dwight VdV - <a id="github" href="https://www.github.com/Dwight-Fr34k.html">my github</a></p>
</footer>
<!-- Scripts -->
<script src="vendor/jQuery.js"></script>
<script src="vendor/jquery-ui.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>