码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-07-24 16:29:39      阅读:1094      评论:0      收藏:0      [点我收藏+]

标签:foo   time   get   val   方法   dde   document   padding   实现   

页面滚动到一定位置时,出现回到顶部按钮 代码如下

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中点击按钮回到顶部(滚动效果)

标签:foo   time   get   val   方法   dde   document   padding   实现   

原文地址:https://www.cnblogs.com/chendada/p/11238746.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!