原因:scrollIntoView()和requestAnimationFrame()目前不能同时存在
方案:需要滚动请使用scrollTo()
示例:
// 以下是vue3的代码片段,about.value和page.value是dom的引用,其他框架请自行获取dom
// about.value.scrollIntoView({ // requestAnimationFrame 导致 scrollIntoView 失效
// behavior: "smooth",
// });
const targetEl = about.value;
const offsetTop = targetEl.offsetTop;
const containerEl = page.value;
containerEl.scrollTo({ top: offsetTop, behavior: "smooth" }); // 使用平滑滚动效果