slade13 / index.html
SilverWulf212's picture
the images aren't appreaing correctly - p[lease fixvhttps://u.pcloud.link/publink/show?code=kZ0JKB5ZUQwK3mYDQpmDpmM31SNxFkYwuTcy - Follow Up Deployment
2f91b0c verified
Raw
History Blame Contribute Delete
16.6 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Slade's Splashing Birthday</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Rubik+Doodle+Shadow&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
animation: {
'splash': 'splash 1.5s ease-in-out infinite',
'float': 'float 3s ease-in-out infinite',
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite'
},
keyframes: {
splash: {
'0%, 100%': { transform: 'scale(1)', opacity: '0.7' },
'50%': { transform: 'scale(1.2)', opacity: '1' }
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-15px)' }
}
}
}
}
}
</script>
<style>
body {
background: linear-gradient(135deg, #1a2a6c, #2a4b8c, #3a6bc0);
font-family: 'Rubik Doodle Shadow', cursive;
overflow-x: hidden;
min-height: 100vh;
}
.anime-title {
font-family: 'Press Start 2P', cursive;
text-shadow: 3px 3px 0 #000, 5px 5px 0 rgba(0,0,0,0.2);
}
.water-card {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(10px);
border: 3px solid #4fc3f7;
box-shadow: 0 10px 30px rgba(0, 150, 255, 0.4);
}
.water-effect {
position: absolute;
width: 100px;
height: 100px;
background: radial-gradient(circle, rgba(33, 150, 243, 0.7) 0%, rgba(33, 150, 243, 0) 70%);
border-radius: 50%;
pointer-events: none;
z-index: -1;
}
.splash {
animation: splash 1.5s infinite;
}
.float {
animation: float 3s infinite;
}
.bounce {
animation: bounce 1s infinite alternate;
}
@keyframes bounce {
from { transform: translateY(0); }
to { transform: translateY(-10px); }
}
.map-container {
filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}
.wave {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
}
.wave svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 100px;
}
.wave .shape-fill {
fill: rgba(33, 150, 243, 0.15);
}
</style>
</head>
<body class="relative text-blue-900">
<!-- Water effects -->
<div class="water-effect top-1/4 left-1/4 splash"></div>
<div class="water-effect top-1/3 right-1/4 splash animation-delay-500"></div>
<div class="water-effect bottom-1/4 left-1/3 splash animation-delay-1000"></div>
<div class="water-effect bottom-1/3 right-1/3 splash animation-delay-1500"></div>
<!-- Waves -->
<div class="wave">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" class="shape-fill"></path>
<path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" class="shape-fill"></path>
<path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" class="shape-fill"></path>
</svg>
</div>
<div class="min-h-screen flex flex-col items-center justify-center py-10 px-4">
<div class="water-card rounded-3xl p-8 md:p-12 max-w-2xl w-full relative overflow-hidden">
<!-- Decorative elements -->
<div class="absolute -top-8 -right-8 float">
<i class="fas fa-water text-blue-400 text-6xl opacity-30"></i>
</div>
<div class="absolute -bottom-6 -left-6 float animation-delay-1000">
<i class="fas fa-birthday-cake text-yellow-400 text-5xl opacity-30"></i>
</div>
<!-- Title -->
<div class="text-center mb-8">
<h1 class="anime-title text-3xl md:text-5xl text-blue-600 mb-2">Slade's Splashing Birthday</h1>
<h2 class="text-xl md:text-2xl text-blue-500 font-bold italic">An Epic Anime Adventure</h2>
<div class="mt-4">
<span class="inline-block px-3 py-1 bg-blue-500 text-white rounded-full text-sm">Turning 13!</span>
</div>
</div>
<!-- Details -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
<div class="flex items-start">
<div class="mr-4 mt-1">
<i class="fas fa-calendar-day text-blue-500 text-2xl"></i>
</div>
<div>
<h3 class="font-bold text-lg text-blue-700">Date & Time</h3>
<p class="text-blue-900">Saturday, July 26, 2025</p>
<p class="text-blue-900">11:00 AM – 2:30 PM</p>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 mt-1">
<i class="fas fa-map-marker-alt text-blue-500 text-2xl"></i>
</div>
<div>
<h3 class="font-bold text-lg text-blue-700">Location</h3>
<p class="text-blue-900">4401 Landry Rd, Scott, LA</p>
<p class="text-blue-900 text-sm">Red Brick House up the driveway on the left</p>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 mt-1">
<i class="fas fa-phone-alt text-blue-500 text-2xl"></i>
</div>
<div>
<h3 class="font-bold text-lg text-blue-700">RSVP</h3>
<p class="text-blue-900">Text or call Lance</p>
<a href="tel:337-255-1763" class="text-blue-600 hover:text-blue-800 font-bold text-lg">337-255-1763</a>
</div>
</div>
<div class="flex items-start">
<div class="mr-4 mt-1">
<i class="fas fa-users text-blue-500 text-2xl"></i>
</div>
<div>
<h3 class="font-bold text-lg text-blue-700">Siblings</h3>
<p class="text-blue-900">Siblings are welcome!</p>
</div>
</div>
</div>
<!-- Important Note -->
<div class="bg-blue-100 border-l-4 border-blue-500 p-4 rounded-lg mb-8">
<div class="flex">
<i class="fas fa-exclamation-circle text-blue-500 text-2xl mr-3"></i>
<div>
<h3 class="font-bold text-lg text-blue-700">Important!</h3>
<p class="text-blue-900">Come ready to get wet! Bring your own towel!</p>
</div>
</div>
</div>
<!-- Map -->
<div class="map-container mb-8 rounded-xl overflow-hidden">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3443.715321079196!2d-92.1070004!3d30.3295186!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x86249c5a0b3d1e4d%3A0x1e0a7d2a2a2a2a2a!2s4401%20Landry%20Rd%2C%20Scott%2C%20LA%2070583!5e0!3m2!1sen!2sus!4v1620000000000!5m2!1sen!2sus"
width="100%"
height="400"
style="border:0;"
allowfullscreen=""
loading="lazy"
class="rounded-xl"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
</div>
<!-- Gallery -->
<div class="mb-8">
<h3 class="font-bold text-xl text-blue-700 mb-4 text-center">Gallery</h3>
<div class="grid grid-cols-2 md:grid-cols-3 gap-4">
<img src="https://u.pcloud.link/publink/show?code=XZ0JKB5Z1Q8QJYx7nJx8Q0q9Xb8HwWQZ1Q7X#file=IMG_20240202_133543.jpg" alt="Gallery image 1" class="w-full h-48 object-cover rounded-lg shadow-md hover:scale-105 transition-transform">
<img src="https://u.pcloud.link/publink/show?code=XZ0JKB5Z1Q8QJYx7nJx8Q0q9Xb8HwWQZ1Q7X#file=IMG_20240202_133548.jpg" alt="Gallery image 2" class="w-full h-48 object-cover rounded-lg shadow-md hover:scale-105 transition-transform">
<img src="https://u.pcloud.link/publink/show?code=XZ0JKB5Z1Q8QJYx7nJx8Q0q9Xb8HwWQZ1Q7X#file=IMG_20240202_133551.jpg" alt="Gallery image 3" class="w-full h-48 object-cover rounded-lg shadow-md hover:scale-105 transition-transform">
<img src="https://u.pcloud.link/publink/show?code=XZ0JKB5Z1Q8QJYx7nJx8Q0q9Xb8HwWQZ1Q7X#file=IMG_20240202_133555.jpg" alt="Gallery image 4" class="w-full h-48 object-cover rounded-lg shadow-md hover:scale-105 transition-transform">
<img src="https://u.pcloud.link/publink/show?code=XZ0JKB5Z1Q8QJYx7nJx8Q0q9Xb8HwWQZ1Q7X#file=IMG_20240202_133558.jpg" alt="Gallery image 5" class="w-full h-48 object-cover rounded-lg shadow-md hover:scale-105 transition-transform">
<img src="https://u.pcloud.link/publink/show?code=XZ0JKB5Z1Q8QJYx7nJx8Q0q9Xb8HwWQZ1Q7X#file=IMG_20240202_133601.jpg" alt="Gallery image 6" class="w-full h-48 object-cover rounded-lg shadow-md hover:scale-105 transition-transform">
</div>
</div>
<!-- Countdown -->
<div class="text-center mb-8">
<h3 class="font-bold text-xl text-blue-700 mb-4">Countdown to Splash Day!</h3>
<div class="flex justify-center space-x-4">
<div class="bg-blue-500 text-white rounded-lg p-3 w-20">
<div class="text-2xl font-bold" id="days">365</div>
<div class="text-sm">Days</div>
</div>
<div class="bg-blue-500 text-white rounded-lg p-3 w-20">
<div class="text-2xl font-bold" id="hours">00</div>
<div class="text-sm">Hours</div>
</div>
<div class="bg-blue-500 text-white rounded-lg p-3 w-20">
<div class="text-2xl font-bold" id="minutes">00</div>
<div class="text-sm">Mins</div>
</div>
<div class="bg-blue-500 text-white rounded-lg p-3 w-20">
<div class="text-2xl font-bold" id="seconds">00</div>
<div class="text-sm">Secs</div>
</div>
</div>
</div>
<!-- Confetti animation -->
<div class="absolute top-0 left-0 w-full h-full overflow-hidden pointer-events-none">
<div class="confetti"></div>
<div class="confetti"></div>
<div class="confetti"></div>
<div class="confetti"></div>
<div class="confetti"></div>
<div class="confetti"></div>
<div class="confetti"></div>
<div class="confetti"></div>
<div class="confetti"></div>
<div class="confetti"></div>
</div>
</div>
<div class="mt-8 text-center text-blue-200">
<p>Get ready for the ultimate water adventure!</p>
</div>
</div>
<script>
// Countdown timer
const countDownDate = new Date("July 26, 2025 11:00:00").getTime();
const countdownFunction = setInterval(function() {
const now = new Date().getTime();
const distance = countDownDate - now;
const days = Math.floor(distance / (1000 * 60 * 60 * 24));
const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById("days").innerHTML = days;
document.getElementById("hours").innerHTML = hours;
document.getElementById("minutes").innerHTML = minutes;
document.getElementById("seconds").innerHTML = seconds;
if (distance < 0) {
clearInterval(countdownFunction);
document.getElementById("days").innerHTML = "0";
document.getElementById("hours").innerHTML = "0";
document.getElementById("minutes").innerHTML = "0";
document.getElementById("seconds").innerHTML = "0";
}
}, 1000);
// Water splash effect on click
document.addEventListener('click', function(e) {
const splash = document.createElement('div');
splash.className = 'water-effect absolute pointer-events-none';
splash.style.left = e.pageX - 50 + 'px';
splash.style.top = e.pageY - 50 + 'px';
splash.style.animation = 'splash 1s forwards';
document.body.appendChild(splash);
setTimeout(() => {
splash.remove();
}, 1000);
});
// Confetti effect
const confettiElements = document.querySelectorAll('.confetti');
confettiElements.forEach((el, index) => {
const left = Math.random() * 100;
const animationDuration = 2 + Math.random() * 3;
const delay = Math.random() * 5;
const size = 5 + Math.random() * 10;
const color = `hsl(${Math.random() * 360}, 100%, 50%)`;
el.style.left = `${left}%`;
el.style.width = `${size}px`;
el.style.height = `${size}px`;
el.style.backgroundColor = color;
el.style.position = 'absolute';
el.style.borderRadius = '50%';
el.style.animation = `float ${animationDuration}s ease-in-out ${delay}s infinite`;
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=SilverWulf212/slade13" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>