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

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

HTML

  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();

 

 

 


 

转载于:https://www.cnblogs.com/chendada/p/11238746.html

你可能感兴趣的:(Vue中点击按钮回到顶部(滚动效果))