Appearance
滚动到页面顶部
语法
js
import { scrollToTop } from 'warbler-js';
scrollToTop();
参数
null
返回值
Void
源码
js
const scrollToTop = () => {
const c = document.documentElement.scrollTop || document.body.scrollTop;
if (c > 0) {
window.requestAnimationFrame(scrollToTop);
window.scrollTo(0, c - c / 8);
}
};
例子
js
import { scrollToTop } from 'warbler-js';
scrollToTop();
添加版本
1.2.0