-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlast.html
More file actions
409 lines (350 loc) · 11.3 KB
/
last.html
File metadata and controls
409 lines (350 loc) · 11.3 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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Beautiful Memories ✨</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Quicksand:wght@300;400;500;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
background: linear-gradient(135deg,
#ffd1dc 0%,
#e6e6fa 25%,
#ffefd5 50%,
#e6e6fa 75%,
#ffd1dc 100%);
background-size: 400% 400%;
animation: gradientFlow 15s ease infinite;
font-family: 'Quicksand', sans-serif;
overflow-x: hidden;
color: #4a4a4a;
}
@keyframes gradientFlow {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
/* Enhanced Sparkle Effect */
.magic-sparkles {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}
.sparkle {
position: absolute;
width: 6px;
height: 6px;
border-radius: 50%;
background-color: white;
animation: twinkle var(--duration, 4s) ease-in-out infinite;
opacity: 0;
}
@keyframes twinkle {
0%,
100% {
opacity: 0;
transform: scale(0.5);
}
50% {
opacity: 0.8;
transform: scale(1);
}
}
/* Generate 50 sparkles with different positions and animations */
.magic-sparkles::before,
.magic-sparkles::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
background-image: radial-gradient(circle, white 1px, transparent 1px);
background-size: 50px 50px;
animation: sparkleLayer 8s linear infinite;
opacity: 0.5;
}
.magic-sparkles::after {
animation-delay: -4s;
transform: rotate(45deg);
}
@keyframes sparkleLayer {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-50px);
}
}
/* Floating Hearts */
.floating-hearts {
position: fixed;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 2;
}
.heart {
position: absolute;
font-size: 1.5rem;
color: rgba(255, 105, 180, 0.6);
animation: floatHeart var(--float-duration, 6s) ease-in-out infinite;
animation-delay: var(--delay, 0s);
}
@keyframes floatHeart {
0% {
transform: translate(0, 100vh) rotate(0deg);
}
100% {
transform: translate(var(--translate-x, 0), -100vh) rotate(360deg);
}
}
/* Welcome Section */
.welcome {
text-align: center;
padding: 4rem 2rem;
position: relative;
z-index: 3;
}
.welcome h1 {
font-family: 'Dancing Script', cursive;
font-size: 4rem;
color: #ff69b4;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
animation: fadeInScale 2s ease;
}
.welcome p {
font-size: 1.2rem;
max-width: 600px;
margin: 1.5rem auto;
line-height: 1.6;
animation: fadeIn 2s ease 0.5s both;
}
/* Enhanced Memory Cards */
.memory-container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
z-index: 3;
position: relative;
}
.memory-card {
background: rgba(255, 255, 255, 0.9);
border-radius: 20px;
padding: 1.5rem;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.memory-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.memory-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
transform: translateX(-100%);
transition: 0.5s;
}
.memory-card:hover::before {
transform: translateX(100%);
}
.memory-img {
width: 100%;
height: 250px;
object-fit: cover;
border-radius: 15px;
margin-bottom: 1rem;
transition: transform 0.5s ease;
}
.memory-card:hover .memory-img {
transform: scale(1.05);
}
.memory-date {
font-family: 'Dancing Script', cursive;
color: #ff69b4;
font-size: 1.3rem;
margin-bottom: 0.5rem;
}
.memory-caption {
font-size: 1rem;
line-height: 1.5;
color: #666;
}
/* Final Message Section */
.final-message {
text-align: center;
padding: 4rem 2rem;
background: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(10px);
margin-top: 3rem;
position: relative;
z-index: 3;
}
.final-message h2 {
font-family: 'Dancing Script', cursive;
font-size: 3rem;
color: #ff69b4;
margin-bottom: 2rem;
animation: heartbeat 2s infinite;
}
@keyframes heartbeat {
0%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
}
.final-message p {
font-size: 1.2rem;
max-width: 800px;
margin: 0 auto 2rem;
line-height: 1.8;
}
.goodbye-btn {
display: inline-block;
padding: 1rem 2rem;
font-size: 1.2rem;
background: linear-gradient(45deg, #ff69b4, #da70d6);
color: white;
border: none;
border-radius: 50px;
cursor: pointer;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
animation: float 3s infinite ease-in-out;
}
.goodbye-btn:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(255, 105, 180, 0.6);
}
@keyframes float {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
/* Animations */
@keyframes fadeInScale {
0% {
opacity: 0;
transform: scale(0.8);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/* Generate Hearts */
.js-generate-hearts {
position: fixed;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 2;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.4);
}
::-webkit-scrollbar-thumb {
background: linear-gradient(45deg, #ff69b4, #da70d6);
border-radius: 6px;
}
/* Responsive Design */
@media (max-width: 768px) {
.welcome h1 {
font-size: 3rem;
}
.memory-container {
grid-template-columns: 1fr;
}
.final-message h2 {
font-size: 2.5rem;
}
}
</style>
</head>
<body>
<div class="magic-sparkles"></div>
<div class="floating-hearts">
<!-- Hearts will be generated via CSS -->
<div class="heart" style="--float-duration: 6s; --delay: 0s; --translate-x: 20px;">💝</div>
<div class="heart" style="--float-duration: 8s; --delay: 1s; --translate-x: -30px;">💖</div>
<div class="heart" style="--float-duration: 7s; --delay: 2s; --translate-x: 40px;">💗</div>
<div class="heart" style="--float-duration: 9s; --delay: 3s; --translate-x: -20px;">💓</div>
<div class="heart" style="--float-duration: 5s; --delay: 4s; --translate-x: 30px;">💕</div>
</div>
<section class="welcome">
<h1>Our Beautiful Moments Together</h1>
<p>Every moment spent with you has been magical. Let's cherish these precious memories ...</p>
</section>
<div class="memory-container">
<div class="memory-card">
<img src="./d1.jpg" alt="First Date" class="memory-img">
<div class="memory-date">Her Smile Says It All</div>
<div class="memory-caption">You’re truly one of the sweetest girls I know, and I feel lucky to have a sis
like you.❤️</div>
</div>
<div class="memory-card">
<img src="./d2.jpg" alt="Beach Day" class="memory-img">
<div class="memory-date">Together Vibes</div>
<div class="memory-caption">May your journey ahead be filled with happiness, success, and endless
smiles.😊💕</div>
</div>
<div class="memory-card">
<img src="./d3.jpg" alt="Movie Night" class="memory-img">
<div class="memory-date">Pretty Soul</div>
<div class="memory-caption">Keep being the amazing person you are—you make every moment brighter.🌸💖</div>
</div>
</div>
<section class="final-message">
<h2>Thank You for the Memories</h2>
<p>Every laugh, every chat, and every moment we’ve shared has been truly special.💫<br>
I’m so grateful for the bond we have, and for the positivity you always bring into my life.<br>
On your birthday, I just wish for endless happiness, love, and success to come your way.🌸</p>
<p>You deserve all the joy in the world—keep shining and spreading your beautiful energy.✨</p>
<a href="#" class="goodbye-btn">Until We Meet Again 💝</a>
</section>
</body>
</html>