原因:scrollIntoView()和requestAnimationFrame()目前不能同時存在
方案:需要滾動請使用scrollTo()
示例:
// 以下是vue3的代碼片段,about.value和page.value是dom的引用,其他框架請自行獲取dom
// about.value.scrollIntoView({ // requestAnimationFrame 導(dǎo)致 scrollIntoView 失效
// behavior: "smooth",
// });
const targetEl = about.value;
const offsetTop = targetEl.offsetTop;
const containerEl = page.value;
containerEl.scrollTo({ top: offsetTop, behavior: "smooth" }); // 使用平滑滾動效果