目录
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 条评论