iteck-gatsby-nextream-web/src/common/scrollToSection.js
2024-09-09 14:29:40 -07:00

11 lines
295 B
JavaScript

export default function scrollToSection(event) {
event.preventDefault();
const section = document.querySelector('[data-scroll-index="' + event.target.dataset.scrollNav + '"]');
if (section) {
setTimeout(() => {
section.scrollIntoView({ behavior: 'smooth' });
}, 300);
}
}