HTMLify
happy birthday
Views: 311 | Author: amar
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 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>🎉 Cringe Birthday Wishes 🎂</title> <style> /* === Page Styles === */ body { margin: 0; padding: 0; overflow: hidden; background: linear-gradient(135deg, #FFC1CC, #FFEE93); font-family: 'Comic Sans MS', cursive, sans-serif; color: #fff; text-align: center; } /* Blinking “HAPPY BIRTHDAY” */ @keyframes blink { 0%, 50%, 100% { opacity: 1; } 25%, 75% { opacity: 0; } } h1 { font-size: 4rem; margin-top: 2rem; animation: blink 1.5s infinite; text-shadow: 2px 2px #FF69B4; } /* Video container (16:9 aspect ratio) */ .video-container { position: relative; margin: 2rem auto; width: 80%; max-width: 800px; height: 0; padding-bottom: 56.25%; /* This forces a 16:9 ratio */ border: 10px solid #FFD700; border-radius: 20px; box-shadow: 0 0 20px rgba(0,0,0,0.5); overflow: hidden; background: #000; } /* Make the <video> fill the entire rectangle and "cover" or "contain" the frame */ .video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; /* 'cover' fills and crops; use 'contain' to fit with black bars */ } /* Balloons */ .balloon { position: absolute; bottom: -150px; width: 50px; height: 70px; background-color: #FF69B4; border-radius: 0 0 50% 50%; opacity: 0.8; } .balloon:before { content: ''; position: absolute; top: -10px; left: 50%; width: 14px; height: 20px; background-color: inherit; border-radius: 50% 50% 0 0; transform: translateX(-50%); } .string { position: absolute; bottom: -220px; left: 50%; width: 2px; height: 150px; background-color: #333; } @keyframes floatUp { 0% { transform: translateY(0) rotate(0deg); } 100% { transform: translateY(-120vh) rotate(360deg); } } /* Confetti */ .confetti { position: absolute; width: 8px; height: 8px; opacity: 0.8; animation: fall linear infinite; } @keyframes fall { 0% { transform: translateY(-10vh) rotate(0deg); } 100% { transform: translateY(110vh) rotate(720deg); } } </style> </head> <body> <h1>🎂 HAPPY BIRTHDAY!!! 🎉</h1> <!-- ================= Video Container ================= --> <div class="video-container"> <!-- 1) Use your MP4 URL as the `src`. 2) Remove `muted` so you can hear sound. 3) Add `controls` so the user can pause/play/volume. 4) Use `object-fit: cover;` (in CSS) so it fills the box. Change to `object-fit: contain;` if you’d rather see the entire video with letterboxing. --> <video src="https://htmlify.artizote.com/amar/videoplayback%20(1).mp4" autoplay loop controls ></video> </div> <!-- ================= Balloons & Confetti ================= --> <script> const colors = ["#FF5757", "#FFB347", "#FF69B4", "#87CEEB", "#32CD32", "#FFD700"]; // Generate 12 random balloons for (let i = 0; i < 12; i++) { const balloon = document.createElement("div"); balloon.classList.add("balloon"); const size = Math.random() * 30 + 40; // 40px–70px balloon.style.width = size + "px"; balloon.style.height = size * 1.2 + "px"; balloon.style.backgroundColor = colors[Math.floor(Math.random() * colors.length)]; balloon.style.left = Math.random() * 95 + "vw"; // Vertical float animation (5s–10s) const duration = Math.random() * 5 + 5; balloon.style.animation = `floatUp ${duration}s ease-in infinite`; // Add string beneath each balloon const string = document.createElement("div"); string.classList.add("string"); string.style.height = size * 2 + "px"; string.style.bottom = "-" + (size * 2) + "px"; string.style.left = "50%"; balloon.appendChild(string); document.body.appendChild(balloon); } // Create confetti pieces continuously function createConfettiPiece() { const confetti = document.createElement("div"); confetti.classList.add("confetti"); const size = Math.random() * 6 + 4; // 4px–10px confetti.style.width = size + "px"; confetti.style.height = size + "px"; confetti.style.backgroundColor = colors[Math.floor(Math.random() * colors.length)]; confetti.style.left = Math.random() * 100 + "vw"; const duration = Math.random() * 3 + 2; // 2s–5s confetti.style.animationDuration = duration + "s"; confetti.style.animationDelay = Math.random() * 2 + "s"; document.body.appendChild(confetti); // Remove after the animation ends setTimeout(() => confetti.remove(), (duration + 2) * 1000); } setInterval(createConfettiPiece, 200); </script> </body> </html> |