我遇到了一个关于 scrollIntoView 的问题。我编写的代码适用于 Firefox,但不适用于 Chrome。我没有从控制台收到任何错误或任何东西,因此我不知道问题出在哪里。如何在 Chrome 上正确运行它?我想用 Vanilla JS 解决它
这是我的代码-> https://codepen.io/Rafi-R/pen/PLdvjO
const body = document.querySelector('body');
const links = document.querySelectorAll(".link");
let section = 0;
const scrollDirection = e => e.wheelDelta ? e.wheelDelta : -1 * e.deltaY;
const scrollToSection = e => {
e.preventDefault();
section =
scrollDirection(e) < 0
? (section + 1 >= links.length - 1 ? section = links.length - 1 : section + 1)
: (section - 1 <= 0 ? section = 0 : section - 1);
let element = document.querySelector(links[section].getAttribute("href"));
scrollToTheView(element);
}
const scrollToTheView = el => {
el.scrollIntoView({ behavior: 'smooth' });
console.log(el, links[section].getAttribute("href"), section)
}
body.addEventListener('wheel', scrollToSection, { passive: false });
当 codepen 的控制台打开时会console.log()
崩溃scrollIntoView({behavior: 'smooth'})
,因此滚动不起作用。