Spaces:
Running
Running
File size: 821 Bytes
c04d49d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
document.addEventListener('DOMContentLoaded', () => {
// Add any global JavaScript functionality here
console.log('MathMagic Visualizer loaded!');
// Animate elements on scroll
const animateOnScroll = () => {
const elements = document.querySelectorAll('.fade-in, .slide-up');
elements.forEach(element => {
const elementPosition = element.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.3;
if (elementPosition < screenPosition) {
element.style.opacity = '1';
element.style.transform = 'translateY(0)';
}
});
};
// Initial check
animateOnScroll();
// Check on scroll
window.addEventListener('scroll', animateOnScroll);
}); |