-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
323 lines (286 loc) · 8.26 KB
/
index.html
File metadata and controls
323 lines (286 loc) · 8.26 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
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:image" content="https://yoink.sh/preview.webp">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary_large_image">
<title>YOINK</title>
<meta name="description" content="Yoinking binaries since 2026">
<style>
:root {
--hot-pink: #ff2fd0;
--acid: #a8ff00;
--electric: #00f0ff;
--burn: #ff6b00;
--void: #090009;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
font-family: "Impact", "Haettenschweiler", "Arial Black", sans-serif;
color: #fff;
background:
radial-gradient(circle at 10% 10%, #1b0033 0%, transparent 40%),
radial-gradient(circle at 90% 20%, #001b33 0%, transparent 35%),
radial-gradient(circle at 40% 80%, #330011 0%, transparent 45%),
repeating-conic-gradient(from 0deg, #120012 0deg 12deg, #000 12deg 24deg);
overflow-x: hidden;
text-transform: uppercase;
}
body::before {
content: "";
position: fixed;
inset: 0;
background:
repeating-linear-gradient(
90deg,
rgba(255, 255, 255, 0.03) 0 2px,
transparent 2px 6px
),
repeating-linear-gradient(
0deg,
rgba(255, 255, 255, 0.02) 0 3px,
transparent 3px 7px
);
mix-blend-mode: screen;
pointer-events: none;
}
body.chrome-lite::before {
display: none;
}
#riot {
position: fixed;
inset: 0;
pointer-events: none;
overflow: hidden;
}
.yoink {
position: absolute;
font-weight: 900;
color: var(--hot-pink);
text-shadow:
0 0 18px rgba(255, 255, 255, 0.4),
-4px 4px 0 #000;
animation: spin var(--spin) linear infinite;
}
body.chrome-lite .yoink {
text-shadow: -3px 3px 0 #000;
}
#hero {
position: relative;
z-index: 2;
text-align: center;
font-size: clamp(72px, 20vw, 260px);
letter-spacing: 0.1em;
margin-bottom: 24px;
color: var(--acid);
text-shadow:
0 0 25px rgba(168, 255, 0, 0.7),
0 0 80px rgba(168, 255, 0, 0.9),
0 0 120px rgba(255, 47, 208, 0.7);
}
#hero::before,
#hero::after {
content: "YOINK";
position: absolute;
inset: 0;
mix-blend-mode: difference;
opacity: 0.7;
}
body.chrome-lite #hero::before,
body.chrome-lite #hero::after {
display: none;
}
#hero::before {
transform: translate(-8px, 6px) skewX(-6deg);
color: var(--electric);
}
#hero::after {
transform: translate(10px, -6px) skewX(8deg);
color: var(--burn);
}
.marquee {
position: absolute;
width: 200vw;
top: 8vh;
left: -50vw;
font-size: clamp(24px, 6vw, 90px);
color: rgba(255, 255, 255, 0.16);
letter-spacing: 0.4em;
animation: marquee 22s linear infinite;
text-shadow: 0 0 24px rgba(255, 255, 255, 0.4);
}
.marquee:nth-of-type(2) {
top: 80vh;
animation-duration: 16s;
color: rgba(0, 255, 255, 0.2);
transform: rotate(-2deg);
}
main {
position: relative;
z-index: 3;
max-width: 960px;
margin: 0 auto;
padding: 140px 20px 80px;
display: flex;
flex-direction: column;
align-items: center;
gap: 28px;
}
.panel {
width: min(960px, 92vw);
padding: 22px 24px;
background: rgba(0, 0, 0, 0.55);
border: 3px solid var(--electric);
box-shadow:
0 0 20px rgba(0, 240, 255, 0.5),
0 0 60px rgba(255, 47, 208, 0.35);
backdrop-filter: blur(12px) saturate(1.6);
-webkit-backdrop-filter: blur(12px) saturate(1.6);
}
pre {
margin: 0;
font-family: "Fira Code", "SFMono-Regular", Menlo, monospace;
font-size: clamp(14px, 2.6vw, 18px);
line-height: 1.6;
color: #eaffff;
text-transform: none;
white-space: pre-wrap;
}
.prompt,
.cmd {
font-weight: 700;
}
.prompt {
padding-right: 6px;
animation: cmd-shift 1.2s steps(2, end) infinite;
}
.cmd {
color: #eaffff;
text-shadow: 0 0 12px rgba(0, 240, 255, 0.7);
}
.output-red {
color: #ff2b2b;
text-shadow: 0 0 14px rgba(255, 43, 43, 0.8);
}
a {
color: var(--acid);
text-decoration: none;
font-size: clamp(18px, 3vw, 26px);
letter-spacing: 0.18em;
padding: 10px 22px;
border: 3px solid var(--acid);
background: rgba(0, 0, 0, 0.6);
box-shadow:
0 0 20px rgba(168, 255, 0, 0.5),
inset 0 0 20px rgba(168, 255, 0, 0.2);
animation: link-pulse 1.6s ease-in-out infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg) scale(1);
}
50% {
transform: rotate(180deg) scale(1.15);
}
100% {
transform: rotate(360deg) scale(1);
}
}
@keyframes marquee {
0% {
transform: translateX(0) rotate(1deg);
}
100% {
transform: translateX(-50vw) rotate(-2deg);
}
}
@keyframes link-pulse {
0% {
transform: scale(1);
filter: hue-rotate(0deg);
}
50% {
transform: scale(1.08);
filter: hue-rotate(40deg);
}
100% {
transform: scale(1);
filter: hue-rotate(0deg);
}
}
@keyframes cmd-shift {
0% {
color: #a8ff00;
}
33% {
color: #00f0ff;
}
66% {
color: #ff2fd0;
}
100% {
color: #a8ff00;
}
}
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.001ms !important;
animation-iteration-count: 1 !important;
}
}
</style>
</head>
<body>
<div class="marquee">YOINK YOINK YOINK YOINK YOINK YOINK</div>
<div class="marquee">YOiNK YOiNK YOiNK YOiNK YOiNK</div>
<div id="riot" aria-hidden="true"></div>
<main>
<div id="hero">YOINK</div>
<div class="panel">
<pre><code><span class="prompt">$</span><span class="cmd">sh <(curl https://yoink.sh) denoland/deno</span>
<span class="cmd">./deno</span>
<span class="prompt">$</span><span class="cmd">./deno eval 'console.log("%cYOINK", 'color:red')'</span>
<span class="output-red">YOINK</span></code></pre>
</div>
<div class="panel">
<pre><code><span class="prompt">$</span><span class="cmd">sh <(curl https://yoink.sh) oven-sh/bun eval 'console.log("YOINK")'</span>
YOINK</code></pre>
</div>
<a href="https://github.com/mxcl/yoink">THE GITHUB</a>
</main>
<script>
const riot = document.getElementById("riot");
const colors = ["#ff2fd0", "#00f0ff", "#a8ff00", "#ff6b00", "#ffffff"];
const isChrome =
/Chrome/.test(navigator.userAgent) &&
!/Edg|OPR|Brave/.test(navigator.userAgent);
const count = isChrome ? 8 : 12;
const spinMin = isChrome ? 24 : 18;
const spinRange = isChrome ? 24 : 18;
if (isChrome) {
document.body.classList.add("chrome-lite");
}
for (let i = 0; i < count; i += 1) {
const yoink = document.createElement("div");
yoink.className = "yoink";
yoink.textContent = "YOINK";
yoink.style.left = `${Math.random() * 100}vw`;
yoink.style.top = `${Math.random() * 100}vh`;
yoink.style.fontSize = `${90 + Math.random() * 140}px`;
yoink.style.opacity = `${0.25 + Math.random() * 0.5}`;
yoink.style.setProperty(
"--spin",
`${spinMin + Math.random() * spinRange}s`
);
yoink.style.color = colors[i % colors.length];
riot.appendChild(yoink);
}
</script>
</body>
</html>