instagram / script.js
Yogesh
Automated Instagram Store Deployment
71ee17a
raw
history blame contribute delete
936 Bytes
// GamerVault Interactions
document.addEventListener('DOMContentLoaded', () => {
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Reveal animations on scroll
const observerOptions = {
threshold: 0.1
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, observerOptions);
document.querySelectorAll('.game-card, .offer-card, .hero-content').forEach(el => {
el.classList.add('reveal');
observer.observe(el);
});
});