vue回到顶部

Posted minty

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue回到顶部相关的知识,希望对你有一定的参考价值。

  backTop() {
      var top = document.body.scrollTop || document.documentElement.scrollTop;
      this.duration -= 3;
      this.duration = this.duration <= 0 ? 1 : this.duration;
      var speed = top / this.duration;
      document.documentElement.scrollTop -= speed;
      if (top > 0) {
        this.timer = setTimeout(() => {
          this.backTop();
        }, 16);
      } else {
        this.duration = 50;
        clearTimeout(this.timer);
        
      }
    }

 

以上是关于vue回到顶部的主要内容,如果未能解决你的问题,请参考以下文章

css 回到顶部的片段

Vue中点击按钮回到顶部(滚动效果)

vue页面刷新回到页面顶部的方法

回到顶部|回到底部功能的实现(Vue)

vue回到顶部

VUE 回到顶部