Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 259 Bytes

scroll_to_top_smoothly.md

File metadata and controls

13 lines (11 loc) · 259 Bytes

Scroll to top smoothly

const scrollToTop = () => {
  const c = document.documentElement.scrollTop || document.body.scrollTop;
  if (c > 0) {
    window.requestAnimationFrame(scrollToTop);
    window.scrollTo(0, c - c / 8);
  }
};

scrollToTop();