2019-12-12
描述
将元素平滑的滚动到浏览器窗口的可见区域中。
提示
- 使用
scrollIntoView
方法来滚动元素 - 把参数
{ behavior: 'smooth' }
传递给scrollIntoView
方法中,以便可以进行平滑的滚动
代码
const smoothScroll = element =>
document.querySelector(element).scrollIntoView({
behavior: 'smooth'
});
示例
将 id 为 fooBar 的元素平滑的滚动到可见区域:
smoothScroll('#fooBar');
将 class 为 fooBar 的第一个元素平滑的滚动到可见区域:
smoothScroll('.fooBar');