UNPKG

@daysnap/utils

Version:
13 lines (11 loc) 272 B
// src/scrollToTop.ts function scrollToTop() { const height = document.documentElement.scrollTop || document.body.scrollTop; if (height > 0) { window.requestAnimationFrame(scrollToTop); window.scrollTo(0, height - height / 8); } } export { scrollToTop };