| document.addEventListener('DOMContentLoaded', function() { |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function (e) { |
| e.preventDefault(); |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ |
| behavior: 'smooth' |
| }); |
| }); |
| }); |
|
|
| |
| const animateOnScroll = function() { |
| const elements = document.querySelectorAll('.fade-in'); |
| elements.forEach(element => { |
| const elementPosition = element.getBoundingClientRect().top; |
| const screenPosition = window.innerHeight / 1.3; |
| |
| if(elementPosition < screenPosition) { |
| element.style.opacity = '1'; |
| } |
| }); |
| }; |
|
|
| window.addEventListener('scroll', animateOnScroll); |
| animateOnScroll(); |
| }); |