原生純 js七行代碼實現(xiàn)過度動畫回到頂部(頁面置頂)
// 回到頂部
function gotop() {
(function smoothscroll() {
var currentScroll = document.documentElement.scrollTop || document.body.scrollTop;
if (currentScroll > 0) {
window.requestAnimationFrame(smoothscroll);
window.scrollTo(0, currentScroll - (currentScroll / 5));
}
})()
}
轉(zhuǎn)載至---> 冷影再見