-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Open
Description
<title>pofidiğim 💖</title>
<style>
body {
margin: 0;
padding: 0;
background-color: pink;
font-family: 'Segoe UI', sans-serif;
color: #333;
text-align: center;
}
.container {
padding: 30px;
}
h1 {
font-size: 2.8em;
margin-bottom: 10px;
color: #d63384;
}
.special-date {
font-size: 1.2em;
margin-bottom: 20px;
}
.countdown {
font-size: 1.5em;
color: #b30059;
margin-bottom: 30px;
}
.note {
font-size: 1.4em;
padding: 25px;
background: white;
border-radius: 10px;
margin: 20px auto;
width: 80%;
max-width: 600px;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hearts {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
}
.heart {
position: absolute;
color: red;
font-size: 24px;
animation: float 5s linear infinite;
}
@Keyframes float {
0% { transform: translateY(0); opacity: 1; }
100% { transform: translateY(-100vh); opacity: 0; }
}
</style>
<script>
const targetDate = new Date("2025-05-03T00:00:00").getTime();
const countdown = document.getElementById("countdown");
setInterval(() => {
const now = new Date().getTime();
const distance = targetDate - now;
if (distance < 0) {
countdown.innerHTML = "Bugün bizim özel günümüz! 🎉";
return;
}
const days = Math.floor(distance / (1000 * 60 * 60 * 24));
countdown.innerHTML = `O özel güne ${days} gün kaldı.`;
}, 1000);
function createHeart() {
const heart = document.createElement('div');
heart.classList.add('heart');
heart.style.left = Math.random() * 100 + 'vw';
heart.style.animationDuration = (2 + Math.random() * 3) + 's';
heart.innerText = '❤️';
document.getElementById('hearts').appendChild(heart);
setTimeout(() => heart.remove(), 5000);
}
setInterval(createHeart, 300);
</script>
Pofidiğim 💖
03.05.2024 – İlk günümüz 💫
<div class="countdown" id="countdown">Yükleniyor...</div>
<div class="note">
Sana aşığım kadınıııımmm...<br><br>
İyi ki'msin... 💘<br>
Sensiz nefes almak ne mümkün…<br><br>
— Xerib
</div>
<audio controls autoplay loop>
<source src="https://www.dropbox.com/scl/fi/vx8x5olngkdfku7uafh2q/Yuregimden-Tut-Eylem-Aktas.mp3?rlkey=2atc8f85czqwcuhrbt2wws9pa&raw=1" type="audio/mpeg" />
Tarayıcınız müziği desteklemiyor.
</audio>
Metadata
Metadata
Assignees
Labels
No labels