@daysnap/utils
Version:
13 lines (9 loc) • 356 B
JavaScript
;Object.defineProperty(exports, "__esModule", {value: true});// 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);
}
}
exports.scrollToTop = scrollToTop;