Bhargavtz's picture
Can you make a coffee shop and kids' toys?
058d7a3 verified
Raw
History Blame Contribute Delete
657 Bytes
document.addEventListener('DOMContentLoaded', function() {
// Add animation classes to sections
const sections = document.querySelectorAll('section');
sections.forEach((section, index) => {
section.classList.add('slide-up');
section.style.animationDelay = `${index * 0.1}s`;
});
// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
});