smoothscroll-polyfill
它是一款纯 JS 页面的平滑滚动插件。该插件的特点是页面滚动的行为被作为 window 对象的扩展,用户可以通过 window 对象直接调用平滑滚动的方法。
安装
npm install smoothscroll-polyfill --save
示例
import smoothscroll from "smoothscroll-polyfill";
smoothscroll.polyfill();
window.scroll({
top: scrollTop - 20,
left: 0,
behavior: "smooth", //滚动条平滑滚动
});