<!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}" data-theme="light"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"> <meta name="color-scheme" content="light only"> <title>{{config('app.name')}}</title> <link rel="preconnect" href="https://fonts.bunny.net"> <link href="https://fonts.bunny.net/css?family=figtree:400,600&display=swap" rel="stylesheet" /> <link href="https://cdn.jsdelivr.net/npm/daisyui@4.12.10/dist/full.min.css" rel="stylesheet" type="text/css" /> <meta name="csrf-token" content="{{ csrf_token() }}"> @vite(['resources/css/app.css','resources/js/app.js']) <style> html { scroll-behavior: smooth; } body.no-scroll { overflow: hidden; } .fade-element { opacity: 0; transition: opacity 3s ease-in-out; } .fade-in { opacity: 1; } .petal-overlay { position: fixed; /* Fixes the position to the viewport */ top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; /* Allows interactions through the overlay */ z-index: 9999; /* Ensures it is on top of other elements */ opacity: 0.3; /* Set the opacity to a lower value */ display: none; /* Initially hidden */ } .petal-overlay img { width: 100%; height: 100%; object-fit: cover; /* Ensures the image covers the entire container */ } </style> </head> <body class="antialiased font-serif no-scroll"> <div role="alert" class="alert alert-info hidden z-40 fixed w-1/2 top-3 right-3"> <span></span> </div> <div class="petal-overlay" id="petalOverlay"> <img src="{{ asset('assets/petal.gif') }}" alt="Falling Petals"> </div> <audio id="player" loop> <source src="{{ asset('assets/background-musicv2.mp3') }}" type="audio/mp3"> Your browser does not support the audio element. </audio> <script> document.addEventListener('click', function () { setTimeout(function () { document.getElementById('petalOverlay').style.display = 'block'; }, 1000); // Delay of 1 second (1000 milliseconds) }); </script> <script> document.addEventListener('DOMContentLoaded', function() { var audioElement = document.getElementById('player'); var hasPlayed = false; // To ensure audio only plays once upon clicking and scrolling var scrollCount = 0; var maxScrolls = 6; var scrollInterval = 500; // Time in milliseconds between each scroll var scrollAmount = window.innerHeight / 6; // Amount to scroll per interval function playAudio() { if (!hasPlayed) { console.log('play') var playPromise = audioElement.play(); if (playPromise !== undefined) { playPromise.then(function() { // Automatic playback started! hasPlayed = true; // Prevent further attempts to play }).catch(function(error) { // Automatic playback failed. console.log('Autoplay failed: ' + error); }); } } } function smoothScroll() { if (!hasPlayed) { playAudio(); scrollCount++; if (scrollCount >= maxScrolls) { playAudio(); } else { // Calculate scroll position var currentScroll = window.pageYOffset || document.documentElement.scrollTop; var targetScroll = currentScroll + scrollAmount; // Smooth scroll using requestAnimationFrame function scrollStep() { if (currentScroll < targetScroll) { window.scrollTo(0, currentScroll += 5); // Adjust speed here (e.g., +=5) requestAnimationFrame(scrollStep); } } scrollStep(); // Initiates the smooth scrolling process setTimeout(smoothScroll, scrollInterval); // Continues scrolling after a delay } } } function playOnly() { if (!hasPlayed) { playAudio(); scrollCount++; if (scrollCount >= maxScrolls) { playAudio(); } else { setTimeout(playOnly, scrollInterval); } } } function handleInteraction() { document.body.classList.remove('no-scroll'); // Enable scrolling setTimeout(smoothScroll, scrollInterval); // Start smooth scrolling after initial delay } // Listen for click or touch event to start auto-scrolling window.addEventListener('click', handleInteraction, { once: true }); // Intersection Observer for fading in elements const observerOptions = { root: null, rootMargin: '0px', threshold: 0.1 }; const observer = new IntersectionObserver((entries, observer) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add('fade-in'); observer.unobserve(entry.target); } }); }, observerOptions); document.querySelectorAll('.fade-element').forEach(element => { observer.observe(element); }); }); </script> <div class="parent absolute h-screen w-full"> {{-- <audio src="{{asset('assets/paper-ripping.mp3')}}"></audio> --}} @include('components.front-cover') </div> <div class="section bg-babyblue min-h-screen flex justify-center items-center pb-20 fade-element"> @include('components.main-event') </div> <div class="section bg-babyblue min-h-screen flex justify-center pb-20 fade-element"> @include('components.event-info') </div> <div class="section bg-babyblue flex justify-center pb-20 fade-element"> @include('components.countdown') </div> <div class="section bg-babyblue flex justify-center pt-5 pb-20 fade-element"> @include('components.guestbook') </div> <div class="section bg-babyblue flex justify-center pt-5 pb-20 fade-element"> @include('components.prayer') </div> @include('components.navbar') <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> @stack('script') </body> </html>