Vue平滑滚动到顶部.docx - Word
goTop () {
   cancelAnimationFrame(this.timer)
   const self = this
   self.timer = requestAnimationFrame(function fn () {
   const oTop = document.body.scrollTop || document.documentElement.scrollTop
   if (oTop > 0) {
      document.body.scrollTop = document.documentElement.scrollTop = oTop - 50
      self.timer = requestAnimationFrame(fn)
    } else {
      cancelAnimationFrame(self.timer)
    }
  })
}
第1页,共1页
本文共0个字符
中文(中国)
辅助功能
文档日期2023-01-29 9:59:56