forked from gjeuken/telewave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsheeple.html
262 lines (211 loc) Β· 8.9 KB
/
sheeple.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sheeple</title>
<meta name="description" content="Sheeple">
<meta name="author" content="Gus">
<link rel="stylesheet" href="styles/styles.css?v=1.0">
<link rel="stylesheet" href="styles/sheeplestyles.css">
<link rel="shortcut icon" type="image/png" href="icons/sheeple_favicon.png">
<style>
@import url('https://fonts.googleapis.com/css2?family=Coiny&display=swap');
</style>
</head>
<body>
<div>
<!-- <h1>Sheeple</h1> -->
<img src="img/sheeplelogo.png" alt="logo" style="height: 100px; margin: 10px; margin-bottom: 30px;">
<div id='header'>
<!-- <div class="seed-container">
<span class="label">Seed</span>
<input type="image" onclick="update_seed()" src="img/refresh.png" alt="Update seed" width=24px height=24px>
<input type="text" id="seed" placeholder="seed" size="8" autofocus>
<input type="image" onclick="copySeedUrl()" src="img/clipboard-copy-512.png" alt="Copy link with seed" width=24px height=24px>
</div> -->
<div>
<button id="new" class="coiny-regular" onclick="newClue()">β New Question</button>
<!-- <button id="commit" onclick="button_guess()">π― Guess</button> -->
<!-- <button id="reveal" onclick="peekFishyAnswer()">π Peek</button>
<button id="reset" onclick="clearFishyAnswer()">π§Ή Clear</button> -->
</div>
<!-- <div class="percentages-container">
<span id="percentagesText" class="label">Percentage</span>
<input type="checkbox" id="percentages" checked onclick="update_percentages()">
</div> -->
<div>
<a href="instructions/sheeple" target="_blank">Instructions</a>
<a href="lang/langs"><img src="lang/icons/translation.png" alt="Other languages" width=36px height=36px></a>
</div>
</div>
</div>
<script src="scripts/sheepledata.js"></script>
<div id="board">
<div>
<h2 id="sheepleQ" class="coiny-regular"></h2>
</div>
</div>
<div id="scoreboard">
<div class="divTable scoreboard fish creepster-regular">
<div class="divTableBody">
<div class="divTableRow">
<div class="divTableCell playerCell creepster-regular">
<p id="player1Name" class="playerName" contenteditable="true" style="padding: 0; margin: 0;"></p>
<div>
<button type="button" onclick="scoreButtonsClick(this, 'down', 1);">
-
</button>
<input class="scoreInput" id="player1Score" type="number" name="number" min="0" max="100" value="0">
<button type="button" onclick="scoreButtonsClick(this, 'up', 1);">
+
</button>
</div>
<div class="sheeple-button-div">
<button type="button" class="sheep white" id="sheep1" onclick="setBlackSheep('sheep1')"></button>
</div>
</div>
<div class="divTableCell playerCell">
<p id="player2Name" class="playerName" contenteditable="true" style="padding: 0; margin: 0;"></p>
<div>
<button type="button" onclick="scoreButtonsClick(this, 'down', 2);">
-
</button>
<input class="scoreInput" id="player2Score" type="number" name="number" min="0" max="100" value="0">
<button type="button" onclick="scoreButtonsClick(this, 'up', 2);">
+
</button>
</div>
<div class="sheeple-button-div">
<button type="button" class="sheep white" id="sheep2" onclick="setBlackSheep('sheep2')"></button>
</div>
</div>
<div class="divTableCell playerCell">
<p id="player3Name" class="playerName" contenteditable="true" style="padding: 0; margin: 0;"></p>
<div>
<button type="button" onclick="scoreButtonsClick(this, 'down', 3);">
-
</button>
<input class="scoreInput" id="player3Score" type="number" name="number" min="0" max="100" value="0">
<button type="button" onclick="scoreButtonsClick(this, 'up', 3);">
+
</button>
</div>
<div class="sheeple-button-div">
<button type="button" class="sheep white" id="sheep3" onclick="setBlackSheep('sheep3')"></button>
</div>
</div>
<div class="divTableCell playerCell">
<p id="player4Name" class="playerName" contenteditable="true" style="padding: 0; margin: 0;"></p>
<div>
<button type="button" onclick="scoreButtonsClick(this, 'down', 4);">
-
</button>
<input class="scoreInput" id="player4Score" type="number" name="number" min="0" max="100" value="0">
<button type="button" onclick="scoreButtonsClick(this, 'up', 4);">
+
</button>
</div>
<div class="sheeple-button-div">
<button type="button" class="sheep white" id="sheep4" onclick="setBlackSheep('sheep4')"></button>
</div>
</div>
</div>
<div class="divTableRow">
<div class="divTableCell playerCell second-row">
<p id="player5Name" class="playerName" contenteditable="true" style="padding: 0; margin: 0;"></p>
<div>
<button type="button" onclick="scoreButtonsClick(this, 'down', 5);">
-
</button>
<input class="scoreInput" id="player5Score" type="number" name="number" min="0" max="100" value="0">
<button type="button" onclick="scoreButtonsClick(this, 'up', 5);">
+
</button>
</div>
<div class="sheeple-button-div">
<button type="button" class="sheep white" id="sheep5" onclick="setBlackSheep('sheep5')"></button>
</div>
</div>
<div class="divTableCell playerCell second-row">
<p id="player6Name" class="playerName" contenteditable="true" style="padding: 0; margin: 0;"></p>
<div>
<button type="button" onclick="scoreButtonsClick(this, 'down', 6);">
-
</button>
<input class="scoreInput" id="player6Score" type="number" name="number" min="0" max="100" value="0">
<button type="button" onclick="scoreButtonsClick(this, 'up', 6);">
+
</button>
</div>
<div class="sheeple-button-div">
<button type="button" class="sheep white" id="sheep6" onclick="setBlackSheep('sheep6')"></button>
</div>
</div>
<div class="divTableCell playerCell second-row">
<p id="player7Name" class="playerName" contenteditable="true" style="padding: 0; margin: 0;"></p>
<div>
<button type="button" onclick="scoreButtonsClick(this, 'down', 7);">
-
</button>
<input class="scoreInput" id="player7Score" type="number" name="number" min="0" max="100" value="0">
<button type="button" onclick="scoreButtonsClick(this, 'up', 7);">
+
</button>
</div>
<div class="sheeple-button-div">
<button type="button" class="sheep white" id="sheep7" onclick="setBlackSheep('sheep7')"></button>
</div>
</div>
<div class="divTableCell playerCell second-row">
<p id="player8Name" class="playerName" contenteditable="true" style="padding: 0; margin: 0;"></p>
<div>
<button type="button" onclick="scoreButtonsClick(this, 'down', 8);">
-
</button>
<input class="scoreInput" id="player8Score" type="number" name="number" min="0" max="100" value="0">
<button type="button" onclick="scoreButtonsClick(this, 'up', 8);">
+
</button>
</div>
<div class="sheeple-button-div">
<button type="button" class="sheep white" id="sheep8" onclick="setBlackSheep('sheep8')"></button>
</div>
</div>
</div>
</div>
</div>
</div>
<div>
<div style="margin-top:20px" id="interference">
<button class="button coiny-regular" onclick="resetScore()">Reset Score</button>
</div>
</div>
<div class="games">
<div style="margin-top:20px" id="interference">
<a href="index.html" class="button" style="font-weight:bold">π Telewave π</a>
</div>
<div style="margin-top:20px" class="inprogress">
<a href="interference.html" class="button" style="font-weight:bold">π§ Telewave Interference π§ </a>
</div>
<div style="margin-top:20px" >
<a href="sounds_fishy.html" class="button" style="font-weight:bold">π Sounds Fishy π‘</a>
</div>
<!-- <div style="margin-top:20px" >
<a href="sheeple.html" class="button" style="font-weight:bold">π Sheeple π</a>
</div> -->
<div style="margin-top:20px" >
<a href="chameleon.html" class="button" style="font-weight:bold">π¦ Chameleon π¦</a>
</div>
<div style="margin-top:20px" >
<a href="cute_countdown.html" class="button" style="font-weight:bold">π₯ Cute Countdown π₯</a>
</div>
<div style="margin-top:20px" >
<a href="sketchy_creatures.html" class="button" style="font-weight:bold">βοΈ Sketchy Creatures πΎ</a>
</div>
<div style="margin-top:20px" >
<a href="spurt.html" class="button" style="font-weight:bold">π Spurt π</a>
</div>
</div>
<script src="scripts/sheeplescripts.js"></script>
</body>
</html>