-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplay.html
More file actions
90 lines (90 loc) · 2.83 KB
/
play.html
File metadata and controls
90 lines (90 loc) · 2.83 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dingus Callouts - Classic</title>
<link rel="icon" type="image/png" href="images/favicon.png" />
<link rel="stylesheet" href="play.css" />
</head>
<body>
<canvas
id="dotCanvas"
style="position: fixed; top: 0; left: 0; z-index: -1"
></canvas>
<div class="area" id="area">
<div>
<img src="images/three.png" id="number" alt="number" width="1000px" />
<button type="button" id="skip">Skip</button>
<button type="button" id="report">
Do you call this something else? Bug/Issue?
</button>
</div>
<div>
<div id="left"></div>
<div id="timer">
<div id="timerFill"></div>
</div>
<br />
<img
src="images/lab/20260127143749_1.jpg"
id="guessImage"
alt="image"
/>
<br />
<form id="enter">
<input
type="text"
id="texter"
placeholder="type guess here"
required
maxlength="100"
autocomplete="off"
spellcheck="false"
/>
</form>
</div>
<div id="tags">sample text</div>
<div id="overlay"></div>
<div id="reportModal">
<h2>Report | Suggest Tags</h2>
<p>
Is a callout missing or known by a different name? If so, please
provide the name and its quality.
</p>
<textarea placeholder="Hmmmmmm..." id="newTag"></textarea>
<br />
<br />
<br />
<div class="radioGroup">
<input type="radio" id="best" name="quality" value="best" />
<label for="best">-3.0</label>
<input type="radio" id="fine" name="quality" value="fine" checked />
<label for="fine">-0.5</label>
<input type="radio" id="bad" name="quality" value="bad" />
<label for="bad">+1.5</label>
<br />
<br />
<p>
Is there a bug or a game mechanic that isn’t functioning correctly?
If so, please describe it.
</p>
<textarea
placeholder="Describe the issue in great detail..."
id="issueReport"
></textarea>
<br />
<br />
<button id="closeReport">submit</button>
</div>
</div>
<script src="play.js"></script>
</div>
<div class="leaderboard">
<div id="oop">Oops! You were too slow!</div>
<div id="leaderboardContainer"></div>
<button type="button" id="home">home</button>
<button type="button" id="restart">restart</button>
</div>
</body>
</html>