15 lines
464 B
JavaScript
15 lines
464 B
JavaScript
document.querySelectorAll('nav a').forEach(link => {
|
|
link.addEventListener('click', function(e) {
|
|
e.preventDefault();
|
|
const target = this.getAttribute('href');
|
|
document.querySelector(target).scrollIntoView({
|
|
behavior: 'smooth'
|
|
});
|
|
});
|
|
});
|
|
|
|
document.querySelector('.scroll-down').addEventListener('click', function() {
|
|
document.querySelector('#apropos').scrollIntoView({
|
|
behavior: 'smooth'
|
|
});
|
|
}); |