顺滑的滚动到页面顶部
css
部分
.web .box {
width: 60vw;
height: 60vw;
background-color: tomato;
margin: 0 auto;
margin-bottom: 20vw;
}
.web div:last-child {
background-color: turquoise;
}
html
部分
<div class="web">
<div class="box1 box"></div>
<div class="box2 box"></div>
<div class="box3 box"></div>
<div class="box4 box"></div>
</div>
js
部分
const box4 = document.querySelector('.web .box4');
box4.addEventListener('click', () => {
// 这行代码是关键
window.scrollTo({ top: 0, behavior: `smooth` });
});