实现网页顺滑滚动(smooth scroll)的原生方式有四种:

1. html { scroll-behavior: smooth; }
2. window.scroll({ behavior: 'smooth' })
3. window.scrollBy({ behavior: 'smooth' })
4. elem.scrollIntoView({ behavior: 'smooth' })

demo 地址:codepen.io
展开
zhangbao90s于2019-11-27 03:35发布的图片
1