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回到顶部的主要内容,如果未能解决你的问题,请参考以下文章