Changes to boey.scroll.pub

root
root
28 days ago
Initial commit
README.md
Changed around line 1
+ # boey.scroll.pub
+ Website generated from prompt: bababooey
index.html
Changed around line 1
+
+
+
+
+
+
+
+ Bababooey - The Ultimate Catchphrase Experience
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

BABABOOEY

+

The phrase that changed everything

+
+
+
+
+
+
+

What is Bababooey?

+
+
+

Origin Story

+

A legendary mishap that turned into pop culture gold, born from a producer's attempt to say "Baba Looey".

+
+
+

Cultural Impact

+

From radio waves to viral moments, this phrase has echoed through decades of entertainment.

+
+
+

Legacy

+

Now a universal expression of joy, mischief, and pure entertainment.

+
+
+
+
+
+

Interactive Soundboard

+
+
+
+
+
+
+
+
+
+

Get in Touch

+
+
+
+
+
+
+
+
+
+
+
+

Made with love for Bababooey fans everywhere

+
+
+
+
+
script.js
Changed around line 1
+ 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);
+ });
+ });
style.css
Changed around line 1
+ :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;
+ }
+ }