commit f57b6385eb8b2b0c463b1ea3c8d3b75b1c028863
Author: root <root@hub.scroll.pub> Date: 2024-12-25 04:53:48 +0000 Subject: Initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..d420b3e --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# boey.scroll.pub +Website generated from prompt: bababooey \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..a15d6ab --- /dev/null +++ b/index.html @@ -0,0 +1,88 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="description" content="Experience the magic of Bababooey - A celebration of pop culture's most iconic catchphrase"> + <meta name="keywords" content="bababooey, catchphrase, entertainment, fun"> + <title>Bababooey - The Ultimate Catchphrase Experience</title> + <link rel="stylesheet" href="style.css"> +</head> +<body> + <header> + <nav> + <div class="logo">BABA<span>BOOEY</span></div> + <button class="mobile-menu" aria-label="Toggle Menu"> + <span></span><span></span><span></span> + </button> + <ul class="nav-links"> + <li><a href="#hero">Home</a></li> + <li><a href="#about">About</a></li> + <li><a href="#soundboard">Soundboard</a></li> + <li><a href="#contact">Contact</a></li> + </ul> + </nav> + </header> + + <main> + <section id="hero"> + <div class="hero-content"> + <h1>BABA<span>BOOEY</span></h1> + <p class="tagline">The phrase that changed everything</p> + <button class="cta-button" id="playSound">Play The Sound</button> + </div> + <div class="floating-shapes"></div> + </section> + + <section id="about"> + <h2>What is Bababooey?</h2> + <div class="about-grid"> + <div class="about-card"> + <h3>Origin Story</h3> + <p>A legendary mishap that turned into pop culture gold, born from a producer's attempt to say "Baba Looey".</p> + </div> + <div class="about-card"> + <h3>Cultural Impact</h3> + <p>From radio waves to viral moments, this phrase has echoed through decades of entertainment.</p> + </div> + <div class="about-card"> + <h3>Legacy</h3> + <p>Now a universal expression of joy, mischief, and pure entertainment.</p> + </div> + </div> + </section> + + <section id="soundboard"> + <h2>Interactive Soundboard</h2> + <div class="sound-grid"> + <button class="sound-button" data-sound="classic">Classic</button> + <button class="sound-button" data-sound="remix">Remix</button> + <button class="sound-button" data-sound="epic">Epic</button> + <button class="sound-button" data-sound="slow">Slow-Mo</button> + </div> + </section> + + <section id="contact"> + <h2>Get in Touch</h2> + <form id="contact-form"> + <input type="text" placeholder="Name" required> + <input type="email" placeholder="Email" required> + <textarea placeholder="Your message" required></textarea> + <button type="submit">Send Message</button> + </form> + </section> + </main> + + <footer> + <div class="footer-content"> + <p>Made with love for Bababooey fans everywhere</p> + <div class="social-links"> + <a href="#" aria-label="Twitter">Twitter</a> + <a href="#" aria-label="Instagram">Instagram</a> + <a href="#" aria-label="YouTube">YouTube</a> + </div> + </div> + </footer> + <script src="script.js"></script> +</body> +</html> diff --git a/script.js b/script.js new file mode 100644 index 0000000..a401224 --- /dev/null +++ b/script.js @@ -0,0 +1,86 @@ +document.addEventListener('DOMContentLoaded', () => { + // Mobile Menu Toggle + const mobileMenu = document.querySelector('.mobile-menu'); + const navLinks = document.querySelector('.nav-links'); + + mobileMenu.addEventListener('click', () => { + navLinks.classList.toggle('active'); + const spans = mobileMenu.querySelectorAll('span'); + spans.forEach(span => span.classList.toggle('active')); + }); + + // Smooth Scroll for Navigation Links + document.querySelectorAll('a[href^="#"]').forEach(anchor => { + anchor.addEventListener('click', function (e) { + e.preventDefault(); + const target = document.querySelector(this.getAttribute('href')); + target.scrollIntoView({ + behavior: 'smooth' + }); + }); + }); + + // Sound Button Interactions + const soundButtons = document.querySelectorAll('.sound-button'); + soundButtons.forEach(button => { + button.addEventListener('click', () => { + // Add click animation + button.style.transform = 'scale(0.95)'; + setTimeout(() => { + button.style.transform = 'scale(1)'; + }, 100); + + // Here you would typically play the sound + console.log(`Playing ${button.dataset.sound} sound`); + }); + }); + + // Contact Form Handler + const contactForm = document.getElementById('contact-form'); + contactForm.addEventListener('submit', (e) => { + e.preventDefault(); + // Add form submission animation + contactForm.style.opacity = '0.5'; + setTimeout(() => { + contactForm.style.opacity = '1'; + contactForm.reset(); + alert('Message sent successfully!'); + }, 1000); + }); + + // Floating Shapes Animation + const createFloatingShape = () => { + const shape = document.createElement('div'); + shape.classList.add('floating-shape'); + document.querySelector('.floating-shapes').appendChild(shape); + }; + + // Create multiple floating shapes + for (let i = 0; i < 5; i++) { + createFloatingShape(); + } + + // Hero Button Animation + const playButton = document.getElementById('playSound'); + playButton.addEventListener('click', () => { + playButton.classList.add('clicked'); + setTimeout(() => { + playButton.classList.remove('clicked'); + }, 200); + }); + + // Intersection Observer for Fade-in Animations + const observer = new IntersectionObserver((entries) => { + entries.forEach(entry => { + if (entry.isIntersecting) { + entry.target.classList.add('visible'); + } + }); + }, { + threshold: 0.1 + }); + + document.querySelectorAll('section').forEach(section => { + observer.observe(section); + }); +}); diff --git a/style.css b/style.css new file mode 100644 index 0000000..4d0286e --- /dev/null +++ b/style.css @@ -0,0 +1,309 @@ +:root { + --primary: #FF6B6B; + --secondary: #4ECDC4; + --dark: #2C3E50; + --light: #F7F7F7; + --accent: #FFE66D; +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Segoe UI', system-ui, sans-serif; + line-height: 1.6; + color: var(--dark); + overflow-x: hidden; +} + +/* Header & Navigation */ +header { + position: fixed; + width: 100%; + z-index: 1000; + background: rgba(255, 255, 255, 0.95); + backdrop-filter: blur(10px); +} + +nav { + display: flex; + justify-content: space-between; + align-items: center; + padding: 1rem 5%; + max-width: 1400px; + margin: 0 auto; +} + +.logo { + font-size: 1.8rem; + font-weight: 800; + color: var(--primary); +} + +.logo span { + color: var(--secondary); +} + +.nav-links { + display: flex; + gap: 2rem; + list-style: none; +} + +.nav-links a { + text-decoration: none; + color: var(--dark); + font-weight: 500; + transition: color 0.3s ease; +} + +.nav-links a:hover { + color: var(--primary); +} + +/* Hero Section */ +#hero { + height: 100vh; + display: flex; + align-items: center; + justify-content: center; + position: relative; + background: linear-gradient(135deg, var(--light) 0%, #fff 100%); + overflow: hidden; +} + +.hero-content { + text-align: center; + z-index: 2; +} + +.hero-content h1 { + font-size: 5rem; + line-height: 1; + margin-bottom: 1rem; + color: var(--primary); +} + +.hero-content h1 span { + color: var(--secondary); +} + +.tagline { + font-size: 1.5rem; + margin-bottom: 2rem; + color: var(--dark); +} + +.cta-button { + padding: 1rem 2rem; + font-size: 1.2rem; + border: none; + border-radius: 50px; + background: var(--primary); + color: white; + cursor: pointer; + transition: transform 0.3s ease, box-shadow 0.3s ease; +} + +.cta-button:hover { + transform: translateY(-2px); + box-shadow: 0 10px 20px rgba(0,0,0,0.1); +} + +/* Floating Shapes Animation */ +.floating-shapes { + position: absolute; + width: 100%; + height: 100%; + overflow: hidden; +} + +.floating-shapes::before, +.floating-shapes::after { + content: ''; + position: absolute; + width: 300px; + height: 300px; + border-radius: 50%; + background: linear-gradient(45deg, var(--primary), var(--secondary)); + filter: blur(50px); + opacity: 0.3; + animation: float 20s infinite linear; +} + +.floating-shapes::before { + top: -150px; + left: -150px; +} + +.floating-shapes::after { + bottom: -150px; + right: -150px; + animation-delay: -10s; +} + +@keyframes float { + 0% { transform: translate(0, 0) rotate(0deg); } + 100% { transform: translate(100px, 100px) rotate(360deg); } +} + +/* About Section */ +#about { + padding: 5rem 5%; + background: var(--light); +} + +.about-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 2rem; + margin-top: 3rem; +} + +.about-card { + background: white; + padding: 2rem; + border-radius: 15px; + box-shadow: 0 5px 15px rgba(0,0,0,0.1); + transition: transform 0.3s ease; +} + +.about-card:hover { + transform: translateY(-5px); +} + +/* Soundboard Section */ +#soundboard { + padding: 5rem 5%; + background: white; +} + +.sound-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 1rem; + margin-top: 3rem; +} + +.sound-button { + padding: 2rem; + border: none; + border-radius: 10px; + background: var(--secondary); + color: white; + font-size: 1.2rem; + cursor: pointer; + transition: all 0.3s ease; +} + +.sound-button:hover { + transform: scale(1.05); + background: var(--primary); +} + +/* Contact Section */ +#contact { + padding: 5rem 5%; + background: var(--light); +} + +#contact-form { + max-width: 600px; + margin: 3rem auto; + display: flex; + flex-direction: column; + gap: 1rem; +} + +#contact-form input, +#contact-form textarea { + padding: 1rem; + border: 2px solid transparent; + border-radius: 8px; + font-size: 1rem; + transition: border-color 0.3s ease; +} + +#contact-form input:focus, +#contact-form textarea:focus { + border-color: var(--secondary); + outline: none; +} + +/* Footer */ +footer { + padding: 2rem 5%; + background: var(--dark); + color: white; +} + +.footer-content { + display: flex; + justify-content: space-between; + align-items: center; + max-width: 1400px; + margin: 0 auto; +} + +.social-links { + display: flex; + gap: 1rem; +} + +.social-links a { + color: white; + text-decoration: none; +} + +/* Mobile Responsive */ +.mobile-menu { + display: none; + flex-direction: column; + gap: 4px; + background: none; + border: none; + cursor: pointer; + padding: 5px; +} + +.mobile-menu span { + width: 25px; + height: 3px; + background: var(--dark); + transition: all 0.3s ease; +} + +@media (max-width: 768px) { + .mobile-menu { + display: flex; + } + + .nav-links { + display: none; + position: absolute; + top: 100%; + left: 0; + width: 100%; + background: white; + flex-direction: column; + padding: 1rem; + text-align: center; + } + + .nav-links.active { + display: flex; + } + + .hero-content h1 { + font-size: 3rem; + } + + .footer-content { + flex-direction: column; + gap: 1rem; + text-align: center; + } +}