scroll_to_top/index.js

/**
* 功能:滚动到页面顶部
* @param {Any} - 并不需要任何参数
* @returns {Any} - 没有任何返回值
*/
function scroll_to_top() {
  const height = document.documentElement.scrollTop||document.body.scrollTop;
  if (height > 0) {
    window.requestAnimationFrame(scrol1ToTop);
    window.scrollTo(0, height - height / 8);
  }
}

export default scroll_to_top;