CSS

区域

.container {
    scroll-behavior: smooth; 
}

全局

* {
    scroll-behavior: smooth; 
}

JavaScript

原生 API

target.scrollIntoView({
    behavior: "smooth"
});

JQuery

JQuery animate()

scrollContainer.animate({
    scrollTop: 0
});

MDN

https://developer.mozilla.org/zh-CN/docs/Web/CSS/scroll-behavior


0 条评论

发表回复

Avatar placeholder

您的电子邮箱地址不会被公开。 必填项已用*标注