滚动条回到顶部动画

5年以前  |  阅读数:388 次  |  编程语言:JavaScript 
function scrollToTop() {
  const scrollTop =
    document.documentElement.scrollTop || document.body.scrollTop;
  if (scrollTop > 0) {
    window.requestAnimationFrame(scrollToTop);
    window.scrollTo(0, c - c / 8);
  } else {
    window.cancelAnimationFrame(scrollToTop);
  }
}

Copyright© 2013-2020

All Rights Reserved 京ICP备2023019179号-8