Files
portfolio_yanis/script.js
2025-12-08 16:54:01 +01:00

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'
});
});