需求:如何让页面滑倒底部时,点击回到顶部按钮,会平滑滚动。
方法一:css做法
<style>
html {
scroll-behavior: smooth;
}
</style>
<script>
window.scrollTo(0,0)
<script/>
方法二:js做法
window.scrollTo({
top: 0,
behavior: 'smooth'
})
需求:如何让页面滑倒底部时,点击回到顶部按钮,会平滑滚动。
方法一:css做法
<style>
html {
scroll-behavior: smooth;
}
</style>
<script>
window.scrollTo(0,0)
<script/>
方法二:js做法
window.scrollTo({
top: 0,
behavior: 'smooth'
})