-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathemotedle.html
More file actions
113 lines (112 loc) · 4.54 KB
/
emotedle.html
File metadata and controls
113 lines (112 loc) · 4.54 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html>
<head>
<title>Emotedle - BTMC</title>
<link rel="stylesheet" href="style.css">
<script src="scripts/utils/nav.js"></script>
<script src="scripts/utils/load-nav.js"></script>
<script src="scripts/emotedle.js"></script>
</head>
<body>
<div class="NavBar-wrap"></div>
<h1 style="text-align: center;">Emotedle</h1>
<div class="body">
<div class="body-section" style="display: flex;flex-direction: column;gap: 1em;align-items: center;">
<h2 style="margin-top: 0;">Guess the emote</h2>
<p id="img-info">Current size: -</p>
<div id="emote-display" class="gradientContainer gradient-border">
<div class="fetchDisplay">
<div id="emote-image-container"></div>
</div>
</div>
<form id="input-form" action="">
<input id="guess-input" required autofocus minlength="1" maxlength="30" type="string" style="text-align: center;">
</form>
<div id="button-container">
<button id="submit-button">Submit</button>
</div>
<div id="guess-result">
Attempt: 0/5
</div>
<div id="guess-history">
<table id="guess-table">
<tr>
<th>Attempt</th>
<th>Guess</th>
</tr>
</table>
</div>
</div>
<div class="body-section">
<h2 style="margin-top: 0;">How To Play</h2>
<p>Use the given area of the emote to guess the name of the 7tv emote from Ed's chat. Area increases per attempt.</p>
<sub>If the display is blank after loading, then the emote is just transparent</sub>
</div>
<div class="body-section" style="text-align: left;">
<h2 style="text-align: center; margin-top: 0;">Changelog</h2>
<h3 style="margin-bottom: 4px;">Dec 31, 2025</h3>
<table class="changelog">
<tr>
<td>[Backend]</td>
<td>Remove global emotes Again</td>
</tr>
</table>
<h3 style="margin-bottom: 4px;">Nov 04, 2025</h3>
<table class="changelog">
<tr>
<td>[Backend]</td>
<td>Reenabled global emotes</td>
</tr>
</table>
<h3 style="margin-bottom: 4px;">Nov 03, 2025</h3>
<table class="changelog">
<tr>
<td>[Backend]</td>
<td>Removed global emotes for now</td>
</tr>
</table>
<h3 style="margin-bottom: 4px;">Oct 31, 2025</h3>
<table class="changelog">
<tr>
<td>[Frontend]</td>
<td>Load the full size image at the end rather than 75% size</td>
</tr>
<tr>
<td>[Frontend]</td>
<td>Speed up loading times by 3x</td>
</tr>
<tr>
<td>[Backend]</td>
<td>Speed up loading times by .5x</td>
</tr>
<tr>
<td>[Backend]</td>
<td>Changed api for retrieving emotes</td>
</tr>
<tr>
<td>[X]</td>
<td>Fix caching issues</td>
</tr>
</table>
<h3 style="margin-bottom: 4px;">Oct 30, 2025</h3>
<table class="changelog">
<tr>
<td>[Frontend]</td>
<td>Trim all whitespace from input</td>
</tr>
<tr>
<td>[Backend]</td>
<td>Added global emotes to pool</td>
</tr>
<tr>
<td>[Backend]</td>
<td>Changed api for retrieving emotes</td>
</tr>
</table>
</div>
<div>
<img src="https://count.ayaya.beauty/@btmc-emotedle?name=btmc-emotedle&theme=capoo-2&padding=7&offset=0&align=center&scale=1&pixelated=0&darkmode=auto" alt="btmc-emotedle" style="height: 48px; filter: brightness(1.1);">
</div>
</div>
</body>
</html>