-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmiku.html
More file actions
219 lines (195 loc) · 6.12 KB
/
Copy pathmiku.html
File metadata and controls
219 lines (195 loc) · 6.12 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
<!DOCTYPE html>
<html>
<head>
<title>★ YOU CLAIMED YOUR FREE LEEK ★</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Boogaloo&family=VT323&display=swap');
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: #0d1117;
font-family: 'VT323', monospace;
color: #e0f7f5;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
text-align: center;
padding: 20px;
}
/* animated bg */
body::before {
content: '';
position: fixed;
inset: 0;
background:
repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(57,197,187,0.04) 40px, rgba(57,197,187,0.04) 41px),
repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(57,197,187,0.04) 40px, rgba(57,197,187,0.04) 41px);
pointer-events: none;
}
/* floating leeks */
.leeks {
position: fixed;
inset: 0;
pointer-events: none;
overflow: hidden;
}
.leek {
position: absolute;
top: -60px;
font-size: 2.5rem;
animation: fall linear infinite;
opacity: 0.7;
}
@keyframes fall {
0% { transform: translateY(-60px) rotate(0deg); opacity: 0.8; }
100% { transform: translateY(110vh) rotate(360deg); opacity: 0.2; }
}
.content {
position: relative;
z-index: 10;
display: flex;
flex-direction: column;
align-items: center;
gap: 18px;
}
.stamp {
display: inline-block;
border: 4px solid #ff6b9d;
border-radius: 8px;
padding: 4px 18px;
font-size: 1rem;
color: #ff6b9d;
letter-spacing: 3px;
transform: rotate(-2deg);
animation: stampIn 0.5s cubic-bezier(.17,.67,.38,1.4) both;
}
@keyframes stampIn { from{transform:scale(0) rotate(-10deg)} to{transform:scale(1) rotate(-2deg)} }
h1 {
font-family: 'Boogaloo', cursive;
font-size: clamp(2rem, 7vw, 5rem);
color: #39c5bb;
text-shadow: 4px 4px 0 #1a5e5b, 0 0 30px rgba(57,197,187,0.5);
letter-spacing: 3px;
line-height: 1;
animation: popIn 0.6s 0.1s cubic-bezier(.17,.67,.38,1.4) both;
}
h1 span { color: #ff6b9d; text-shadow: 4px 4px 0 #7a1a3e; }
@keyframes popIn { from{opacity:0;transform:scale(0.5)} to{opacity:1;transform:scale(1)} }
.miku-img {
width: min(260px, 70vw);
height: auto;
border: 4px solid #39c5bb;
box-shadow: 0 0 40px rgba(57,197,187,0.6), 6px 6px 0 #ff6b9d;
animation: gifBob 3s ease-in-out infinite, popIn 0.6s 0.2s both;
}
@keyframes gifBob {
0%,100% { transform: translateY(0) rotate(-1deg); }
50% { transform: translateY(-10px) rotate(1deg); }
}
.congrats {
font-size: 1.4rem;
letter-spacing: 2px;
color: #7de8e2;
animation: popIn 0.5s 0.3s both;
}
.leek-claim {
font-size: 3rem;
animation: spin 2s linear infinite;
display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.claim-box {
border: 3px solid #ffe066;
box-shadow: 4px 4px 0 #39c5bb;
padding: 16px 28px;
background: rgba(255,224,102,0.06);
animation: popIn 0.5s 0.4s both;
}
.claim-box .big { font-size: 1.5rem; color: #ffe066; letter-spacing: 2px; }
.claim-box .small { font-size: 0.9rem; color: rgba(57,197,187,0.6); margin-top: 4px; }
.facts {
max-width: 480px;
animation: popIn 0.5s 0.5s both;
}
.fact {
font-size: 1rem;
letter-spacing: 1px;
color: #7de8e2;
border-left: 3px solid #39c5bb;
padding: 6px 12px;
margin: 6px 0;
text-align: left;
background: rgba(57,197,187,0.05);
}
.fact span { color: #ff6b9d; }
.back-btn {
font-family: 'VT323', monospace;
font-size: 1.2rem;
letter-spacing: 2px;
padding: 10px 28px;
background: #ff6b9d;
color: #fff;
border: 3px solid #ff6b9d;
box-shadow: 4px 4px 0 #7a1a3e;
cursor: pointer;
transition: all 0.1s;
animation: popIn 0.5s 0.6s both;
text-decoration: none;
display: inline-block;
}
.back-btn:hover { background: #e0507e; transform: translate(1px,1px); box-shadow: 2px 2px 0 #7a1a3e; }
.back-btn:active { transform: translate(3px,3px); box-shadow: none; }
.footer-39 {
font-family: 'Boogaloo', cursive;
font-size: 2rem;
color: #39c5bb;
letter-spacing: 4px;
text-shadow: 2px 2px 0 #1a5e5b;
animation: glow39 2s ease-in-out infinite alternate, popIn 0.5s 0.7s both;
}
@keyframes glow39 {
from { text-shadow: 2px 2px 0 #1a5e5b, 0 0 8px rgba(57,197,187,0.3); }
to { text-shadow: 2px 2px 0 #1a5e5b, 0 0 24px rgba(57,197,187,0.8), 0 0 50px rgba(57,197,187,0.3); }
}
</style>
</head>
<body>
<!-- Falling leeks -->
<div class="leeks" id="leeks"></div>
<div class="content">
<div class="stamp">★ CONGRATULATIONS ★</div>
<h1>YOUR FREE <span>LEEK</span><br>HAS ARRIVED!!</h1>
<img class="miku-img" src="images/hatsune-miku-oshi-no-ko.gif" alt="Miku" loading="lazy" onerror="this.style.display='none'" />
<div class="congrats">HATSUNE MIKU HERSELF APPROVES!! (◕‿◕✿)</div>
<div class="claim-box">
<div class="big"><span class="leek-claim">🌿</span> 1x PREMIUM MIKU LEEK CLAIMED <span class="leek-claim">🌿</span></div>
<div class="small">delivery estimated: never · tracking number: 39-39-39-39</div>
</div>
<div class="facts">
<div class="fact">★ Did you know? Miku's iconic leek comes from a <span>Finnish folk video</span> set to "Ievan Polkka"!!</div>
<div class="fact">♪ Hatsune Miku was released on <span>August 31, 2007</span> — she is eternal!!</div>
<div class="fact">✿ "Miku" (ミク) means <span>future</span> and "Hatsune" (初音) means <span>first sound</span>!!</div>
<div class="fact">♥ She has <span>39,000,000+</span> fan-made songs. 39 = "san kyuu" = THANK YOU!!</div>
</div>
<a class="back-btn" href="javascript:window.close()">[ ← GO BACK ]</a>
<div class="footer-39">三 九 ★ 39</div>
</div>
<script>
// spawn falling leeks
const container = document.getElementById('leeks');
const emojis = ['🌿','🎤','♪','★','♥','✿','🎵'];
for (let i = 0; i < 22; i++) {
const el = document.createElement('div');
el.className = 'leek';
el.textContent = emojis[Math.floor(Math.random() * emojis.length)];
el.style.left = Math.random() * 100 + 'vw';
el.style.fontSize = (1.5 + Math.random() * 2) + 'rem';
el.style.animationDuration = (4 + Math.random() * 8) + 's';
el.style.animationDelay = (-Math.random() * 10) + 's';
container.appendChild(el);
}
</script>
</body>
</html>