-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhac-a-mole-game.for-dinosoft-games.html
89 lines (76 loc) · 3.94 KB
/
whac-a-mole-game.for-dinosoft-games.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
<head>
<body>
<link rel="icon" type="image/x-icon" href="DINOSOFT-LOGO.jpg">
</body>
</head>
<head>
<body>
<link rel="stylesheet" href="whac-a-mole.css">
<title>Whac-A-Mole</title>
</body>
</head>
<center>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<form class="demo-content">
<input id="mole-title-toggle" class="toggle mole-title-toggle" type="checkbox" checked="checked" />
<div class="mole-title">
<p class="mole-title-chunks">
<span class="mole-title-far-left">Wha</span>
<span class="mole-title-center-left">c-</span>
<span class="mole-title-center">A</span>
<span class="mole-title-center-right">-M</span>
<span class="mole-title-far-right">ole</span>
</p>
<label class="button mole-start-button" for="mole-title-toggle">Play</label>
</div>
<div class="mole-game">
<input id="mole-hole-far-left-toggle" class="toggle mole-hole-toggle" type="checkbox" />
<label class="mole-hole mole-hole-far-left" for="mole-hole-far-left-toggle"></label>
<div class="mole-hole mole-hole-far-left"></div>
<input id="mole-hole-center-left-toggle" class="toggle mole-hole-toggle" type="checkbox" />
<label class="mole-hole mole-hole-center-left" for="mole-hole-center-left-toggle"></label>
<div class="mole-hole mole-hole-center-left"></div>
<input id="mole-hole-center-toggle" class="toggle mole-hole-toggle" type="checkbox" />
<label class="mole-hole mole-hole-center" for="mole-hole-center-toggle"></label>
<div class="mole-hole mole-hole-center"></div>
<input id="mole-hole-center-right-toggle" class="toggle mole-hole-toggle" type="checkbox" />
<label class="mole-hole mole-hole-center-right" for="mole-hole-center-right-toggle"></label>
<div class="mole-hole mole-hole-center-right"></div>
<input id="mole-hole-far-right-toggle" class="toggle mole-hole-toggle" type="checkbox" />
<label class="mole-hole mole-hole-far-right" for="mole-hole-far-right-toggle"></label>
<div class="mole-hole mole-hole-far-right"></div>
<input id="mole-mole-0-toggle" class="toggle mole-mole-toggle" type="checkbox" />
<label class="mole-mole mole-mole-0" for="mole-mole-0-toggle"></label>
<input id="mole-mole-1-toggle" class="toggle mole-mole-toggle" type="checkbox" />
<label class="mole-mole mole-mole-1" for="mole-mole-1-toggle"></label>
<input id="mole-mole-2-toggle" class="toggle mole-mole-toggle" type="checkbox" />
<label class="mole-mole mole-mole-2" for="mole-mole-2-toggle"></label>
<input id="mole-mole-3-toggle" class="toggle mole-mole-toggle" type="checkbox" />
<label class="mole-mole mole-mole-3" for="mole-mole-3-toggle"></label>
<input id="mole-mole-4-toggle" class="toggle mole-mole-toggle" type="checkbox" />
<label class="mole-mole mole-mole-4" for="mole-mole-4-toggle"></label>
<p class="mole-score">current score</p>
<label class="button button-small mole-help-button" for="mole-help-toggle">pause/help</label>
<input id="mole-help-toggle" class="toggle mole-help-toggle" type="checkbox" />
<div class="mole-modal mole-help-modal">
<p>Five moles and five holes. Click on the moles to hit them as they pop out. Be careful though—if you hit a hole when a mole isn't there, you damage the hole!</p>
<input class="button mole-restart-button" type="reset" value="Restart" />
<label class="button" for="mole-help-toggle">Continue</label>
</div>
<div class="mole-modal mole-win-modal">
<p>Congratulations, shepherd! You got all of them. </p>
<input class="button mole-restart-button" type="reset" value="Restart" />
</div>
<div class="mole-modal mole-loss-modal">
<p>Oh no, all the holes are damaged! How will we ever catch those pesky moles now? Let's try that again.</p>
<input class="button mole-restart-button" type="reset" value="Restart" />
</div>
</div>
</form>
</center>