CoolFace
Apppublic

HelloLuvrynn/hytale-horizons-modpack-mayhem

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
script.js24 linesDownload Raw Back to root
1// Initialize tooltips2document.addEventListener('DOMContentLoaded', function() {3    // This will be used for any interactive elements we add later4    console.log('Website loaded successfully!');5    // Close mobile menu when clicking a link6    document.addEventListener('click', function(e) {7        if (e.target.matches('a')) {8            const dropdowns = document.querySelectorAll('.mobile-dropdown');9            dropdowns.forEach(dropdown => {10                dropdown.classList.remove('show');11            });12        }13    });14 15    // Smooth scroll for anchor links16    document.querySelectorAll('a[href^="#"]').forEach(anchor => {17anchor.addEventListener('click', function (e) {18            e.preventDefault();19            document.querySelector(this.getAttribute('href')).scrollIntoView({20                behavior: 'smooth'21            });22        });23    });24});