-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
443 lines (370 loc) · 16 KB
/
index.html
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HAPPY BIRTHDAY LEXI</title>
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh; /* Ensure the body takes at least the full height of the viewport */
background-image: url('brighteyes.png');
background-size: cover; /* Cover the entire viewport */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Prevent the image from repeating */
background-attachment: fixed; /* Keep the background fixed while scrolling */
margin: 0; /* Remove default margin */
color: white; /* Change text color to white for better contrast */
}
h1 {
color: #ff50b2; /* Text color */
margin: 20px 0; /* Space above and below the title */
text-shadow:
2px 2px 0 rgba(0, 0, 0, 0.7), /* Right shadow */
4px 4px 0 rgba(0, 0, 0, 0.7), /* Further right shadow */
6px 6px 0 rgba(0, 0, 0, 0.7), /* Even further right shadow */
8px 8px 0 rgba(0, 0, 0, 0.7); /* Furthest right shadow */
position: fixed;
top: 10px; /* Distance from the top of the viewport */
left: 50%; /* Center horizontally */
transform: translateX(-50%); /* Adjust to center the title */
font-size: 48px; /* Increase the font size (adjust as needed) */
}
.content {
text-align: left; /* Align content to the left */
position: absolute; /* Position the content absolutely */
left: 20px; /* Distance from the left side of the viewport */
top: 100px; /* Distance from the top of the viewport */
}
.song {
margin-bottom: 20px; /* Space between songs */
}
button {
background-color: white; /* Default button color */
color: black; /* Text color */
border: 3px outset black; /* Border */
padding: 2px 3px; /* Padding for the button */
margin-right: 5px; /* Space between buttons */
cursor: pointer; /* Pointer cursor on hover */
transition: background-color 0.3s; /* Smooth transition for background color */
border-radius: 5px;
}
button:active, /* Change color when button is clicked */
button.active {
background-color: pink; /* Change background color to pink when active */
color: black; /* Keep text color black when active */
}
/* Animated text styles */
.animated-text {
position: fixed;
top: 10px; /* Distance from the top of the viewport */
left: 10px; /* Distance from the left side of the viewport */
background-color: black; /* Black background */
padding: 10px; /* Padding around the text */
border-radius: 5px; /* Rounded corners */
color: #ff0000; /* Neon red color */
font-size: 24px; /* Font size */
animation: neon 1.5s ease-in-out infinite alternate; /* Animation */
}
@keyframes neon {
0% {
text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000, 0 0 20px #ff007f, 0 0 30px #ff007f, 0 0 40px #ff007f, 0 0 50px #ff007f;
}
100% {
text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000, 0 0 40px #ff007f, 0 0 60px #ff007f, 0 0 70px #ff007f, 0 0 80px #ff007f;
}
}
.love-letter-message {
font-size: 24px; /* Font size for the message */
font-style: italic;
color: white; /* Text color */
margin-bottom: 0; /* Remove space between the message and the emoji */
position: fixed; /* Position the message absolutely */
top: 30px; /* Distance from the top of the viewport */
right: 50px; /* Distance from the right side of the viewport */
}
/* Love letter emoji styles */
.love-letter {
position: fixed; /* Position the emoji absolutely */
top: 20px; /* Distance from the top of the viewport */
right: 20px; /* Distance from the right side of the viewport */
font-size: 180px; /* Make the emoji larger */
animation: bounce 1s infinite; /* Animation for bouncing effect */
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0); /* Original position */
}
40% {
transform: translateY(-20px); /* Move up */
}
60% {
transform: translateY(-10px); /* Move down */
}
}
@keyframes neon {
0% {
text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000, 0 0 20px #ff007f, 0 0 30px #ff007f, 0 0 40px #ff007f, 0 0 50px #ff007f;
}
100% {
text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000, 0 0 40px #ff007f, 0 0 60px #ff007f, 0 0 70px #ff007f, 0 0 80px #ff007f;
}
}
.click-to-open {
position: absolute; /* Position the text absolutely */
bottom: 10px; /* Distance from the bottom of the emoji */
left: 50%; /* Center horizontally */
transform: translateX(-50%); /* Adjust to center the text */
font-size: 16px; /* Font size for the text */
color: white; /* Text color */
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Optional: add shadow for better visibility */
white-space: nowrap;
font-style: italic;
}
</style>
</head>
<body>
</style>
</head>
<body>
<h1>" MY PLAYLIST "</h1>
<div class="animated-text">" REMEMBER THAT YOU ARE LOVED
<BR> AND THAT I LOVE YOU " ~E </div>
<div class="content">
<div class="song">
<p>1. UNTIL THE END OF THE NIGHT FROM LEXI</p>
<audio id="song1" src="until the end of the night.mp3"></audio>
<button onclick="playAudio('song1', this)">Play</button>
<button onclick="pauseAudio('song1', this)">Pause</button>
<button onclick="stopAudio('song1', this)">Stop</button>
<span class="beat" style="display: none;">🎶</span>
</div>
<div class="song">
<p>2. KAPAG AKO AY NAGMAHAL BY YENG CONSTANTINO</p>
<audio id="song2" src="Kapag Ako Ay Nagmahal - Yeng Constantino _ _Write About Love_ OST (Lyrics) [ ezmp3.cc ].mp3"></audio>
<button onclick="playAudio('song2', this)">Play</button>
<button onclick="pauseAudio('song2', this)">Pause</button>
<button onclick="stopAudio('song2', this)">Stop</button>
</div>
<div class="song">
<p>3. JUST AS I AM BY AIR SUPPLY</p>
<audio id="song3" src="Air Supply - Just As I Am (Lyrics) [ ezmp3.cc ].mp3"></audio>
<button onclick="playAudio('song3', this)">Play</button>
<button onclick="pauseAudio('song3', this)">Pause</button>
<button onclick="stopAudio('song3', this)">Stop</button>
</div>
<div class="song">
<p>4. YOU MADE ME LIVE AGAIN BY JANET BASCO </p>
<audio id="song4" src="You Made Me Live Again (LYRICS) by Janet Basco ♪ [ ezmp3.cc ].mp3"></audio>
<button onclick="playAudio('song4', this)">Play</button>
<button onclick="pauseAudio('song4', this)">Pause</button>
<button onclick="stopAudio('song4', this)">Stop</button>
</div>
<div class="song">
<p>5. NEVER BEEN TO ME BY ELLIE </p>
<audio id="song5" src="never been to me by ellie.mp3"></audio>
<button onclick="playAudio('song5', this)">Play</button>
<button onclick="pauseAudio('song5', this)">Pause</button>
<button onclick="stopAudio('song5', this)">Stop</button>
</div>
<div class="song">
<p>6. NOW AND FOREVER BY ELLIE </p>
<audio id="song6" src="Now and forever - LYRICS Richard Marx ( cover by ehllen quezada ) [ ezmp3.cc ].mp3"></audio>
<button onclick="playAudio('song6', this)">Play</button>
<button onclick="pauseAudio('song6', this)">Pause</button>
<button onclick="stopAudio('song6', this)">Stop</button>
</div>
<div class="song">
<p>7. LOVE YOU WITH ALL MY HEART BY ELLIE </p>
<audio id="song7" src="Love you with all my heart - CRUSH ( english version ) QUEEN OF TEARS OST cover by Ehllen Quezada [ ezmp3.cc ].mp3"></audio>
<button onclick="playAudio('song7', this)">Play</button>
<button onclick="pauseAudio('song7', this)">Pause</button>
<button onclick="stopAudio('song7', this)">Stop</button>
</div>
<div class="song">
<p>8. TURNING PAGE BY ELLIE </p>
<audio id="song8" src="Turning page_ cover by Ehllen Quezada [ ezmp3.cc ].mp3"></audio>
<button onclick="playAudio('song8', this)">Play</button>
<button onclick="pauseAudio('song8', this)">Pause</button>
<button onclick="stopAudio('song8', this)">Stop</button>
</div>
<div class="song">
<p>9. HURT (JOHNNY CASH) BY ELLIE </p>
<audio id="song9" src="HURT- A tribute to Johnny Cash ( Lyrics ) Cover by_ Ehllen Quezada [ ezmp3.cc ].mp3"></audio>
<button onclick="playAudio('song9', this)">Play</button>
<button onclick="pauseAudio('song9', this)">Pause</button>
<button onclick="stopAudio('song9', this)">Stop</button>
</div>
<div class="song">
<p>10. THE BALLAD OF BY HALE </p>
<audio id="song10" src="Hale - The Ballad Of - (Official Lyric Video) [ ezmp3.cc ].mp3"></audio>
<button onclick="playAudio('song10', this)">Play</button>
<button onclick="pauseAudio('song10', this)">Pause</button>
<button onclick="stopAudio('song10', this)">Stop</button>
</div>
<div class="song">
<p>11. NEVER BE THE SAME BY CAMILA CABELLO </p>
<audio id="song11" src="Camila Cabello - Never Be the Same (Lyrics) [ ezmp3.cc ].mp3"></audio>
<button onclick="playAudio('song11', this)">Play</button>
<button onclick="pauseAudio('song11', this)">Pause</button>
<button onclick="stopAudio('song11', this)">Stop</button>
</div>
<div class="song">
<p>12. ONE LAST SONG BY A1 </p>
<audio id="song12" src="A1 - One Last Song (Lyrics)🎶 [ ezmp3.cc ].mp3"></audio>
<button onclick="playAudio('song12', this)">Play</button>
<button onclick="pauseAudio('song12', this)">Pause</button>
<button onclick="stopAudio('song12', this)">Stop</button>
</div>
</div>
<div class="love-letter-message"> you got 1 message </div>
<div class="love-letter">💌
<span class="click-to-open">click my heart to open</span>
</div> <!-- Love letter emoji -->
<script>
function playAudio(songId, button) {
const audio = document.getElementById(songId);
audio.play();
setActiveButton(button);
}
function pauseAudio(songId, button) {
const audio = document.getElementById(songId);
audio.pause();
setActiveButton(button);
}
function stopAudio(songId, button) {
const audio = document.getElementById(songId);
audio.pause();
audio.currentTime = 0; // Reset to the beginning
setActiveButton(button);
}
function setActiveButton(activeButton) {
// Get all buttons in the document
const buttons = document.querySelectorAll('button');
buttons.forEach(button => {
// Remove the active class from all buttons
button.classList.remove('active');
});
// Add the active class to the clicked button
activeButton.classList.add('active');
}
</script>
<style>
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1000; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
font-family: open sans;
}
.modal-content {
background-color: white;
color: black;
font-family: open sans;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
border: 1px solid #888;
width: 80%; /* Could be more or less, depending on screen size */
max-width: 600px; /* Maximum width */
}
.close-button {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close-button:hover,
.close-button:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
</style>
<div id="greetingModal" class="modal">
<div class="modal-content">
<span class="close-button" onclick="closeModal()">×</span>
<h2>Happy Birthday, Lexi!</h2> <h5> 01/01/2025</h5>
<p>Brightest eyes in the world,</p>
<p>On this special day, I just want to remind you how much you are loved and cherished. You just don't know how truly amazing and inspiring you are. Muah
May your birthday be filled with joy, laughter, and all the things that make you happy. You deserve the best today and always, I am so very proud of you at your work, You are always my ..IDOL.. Your hardwork and diligence have paid off.
<p> IPINAGMAMALAKI KITA! AT NG BANSA NATIN, if only our fellow filipinos have known your achievements I'm sure they will be proud and admire you as well. </p>
<p> Just don't forget to take care of yourself, while helping other people. I wish, there will be more filipino/ filipina like you that can make our country proud
If only they knew who you are but.. I DO. 🥹 <p>
<p> I'm sorry for my late birthday greeting, I just want to finished this website first then put my message here along with my playlist, I made this. for you.
and the playlist that's my songs and also some songs for you, guess and pick 1 song. I have 1 special song for you.hehehe </p>
<p>Wishing you a fantastic year ahead!</p>
<p>With all my love mahal ko </p>
<p>~Ellie</p>
</div>
</div>
<script>
// Function to open the modal
function openModal() {
document.getElementById("greetingModal").style.display = "block";
}
// Function to close the modal
function closeModal() {
document.getElementById("greetingModal").style.display = "none";
}
// Add event listener to the love letter emoji
document.querySelector('.love-letter').addEventListener('click', openModal);
</script>
<div class="beat">
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
<div class="box4"></div>
<div class="box5"></div>
</div>
<style>
.beat {
position: fixed;
padding: 3px;
transform: translateY(-220px) rotate(270deg); /* Move up by 20px */
width: 100px;
height: 50px;
margin: 0 auto;
font-family: "Vibur", cursive;
}
.box1,.box2,.box3,.box4,.box5 {
width: 10px;
height: 10px;
background: red;
margin: 3px;
animation: slide 1s linear infinite alternate;
}
.box2 {
background: green;
animation: slide 0.8s linear infinite alternate;
}
.box3 {
background: blue;
animation: slide .9s linear infinite alternate;
}
.box4 {
background: orange;
animation: slide .5s linear infinite alternate;
}
.box5 {
background: purple;
animation: slide .7s linear infinite alternate;
}
@keyframes slide {
0% {
width: 10px;
}
50% {
width: 45px;
}
}
</style>
</body>
</html>