Vue中点击按钮回到顶部(滚动效果)
Posted chendada
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue中点击按钮回到顶部(滚动效果)相关的知识,希望对你有一定的参考价值。
页面滚动到一定位置时,出现回到顶部按钮 代码如下
html
<div class="footer"> <div class="gotop" v-show="gotop" @click="toTop">Top</div> </div>
CSS
.footer .gotop text-align: center; position: fixed; right: 50px; bottom: 30px; cursor: pointer; padding: 10px; border-radius: 50%; background: white; color: #000000;
JS
export default data() return gotop: false ; , mounted()
// 此处true需要加上,不加滚动事件可能绑定不成功 window.addEventListener("scroll", this.handleScroll, true); , methods: handleScroll(e) let scrolltop = e.target.scrollTop; scrolltop > 30 ? (this.gotop = true) : (this.gotop = false); , toTop() let top = document.documentElement.scrollTop || document.body.scrollTop; // 实现滚动效果 const timeTop = setInterval(() => document.body.scrollTop = document.documentElement.scrollTop = top -= 50; if (top <= 0) clearInterval(timeTop); , 10);
谷歌,火狐中测试通过,Edge中无效,原因 scrollTop 值始终为0
可使用如下方法
// 滚动到app所在的位置(无滚动效果),如app在顶部,即回到顶部
document.getElementById("app").scrollIntoView();
以上是关于Vue中点击按钮回到顶部(滚动效果)的主要内容,如果未能解决你的问题,请参考以下文章