samuel-philipp.de/src/js/main.js
Samuel Philipp 051deb6f27
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
more improvements and cleanup
2023-05-10 20:46:28 +02:00

9 lines
272 B
JavaScript

document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});