溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

vue中怎么監(jiān)聽(tīng)回到頂部滾動(dòng)事件

發(fā)布時(shí)間:2021-07-09 15:24:42 來(lái)源:億速云 閱讀:184 作者:Leah 欄目:web開(kāi)發(fā)

今天就跟大家聊聊有關(guān)vue中怎么監(jiān)聽(tīng)回到頂部滾動(dòng)事件,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

鼠標(biāo)滾到到頁(yè)面中間出現(xiàn)的工具浮框

<template>
<div class="tools">
<ul @mouseleave="mouseLeave()">
<li @click="toTop(step)">回到頂部</li>
<li @mouseover="mouseOver(1)">QQ</li>
<li @mouseover="mouseOver(2)">微信</li>
</ul>
<div v-if="showIndex === 1">玩QQ</div>
<div v-if="showIndex === 2">玩微信</div>
</div>
</template>
<script>
export default {
 name: 'FloatTools',
 props: {
 step: { //此數(shù)據(jù)是控制動(dòng)畫快慢的
  type: Number,
  default: 50
 }
 },
 data() {
 return {
  isActive: false,
  showIndex:0//默認(rèn)顯示下標(biāo)
 }
 },
 methods: {
 toTop(i) {
  //參數(shù)i表示間隔的幅度大小,以此來(lái)控制速度 
  document.documentElement.scrollTop -= i;
  if (document.documentElement.scrollTop > 0) {
  var c = setTimeout(() => this.toTop(i), 16);
  } else {
  clearTimeout(c);
  }
 },
 handleScroll() {
  //獲取滾動(dòng)距頂部的距離,顯示
  let scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop;
  if (scrollTop > 60) {
  this.isActive = true;
  } else {
  this.isActive = false;
  }
 },
 mouseOver(index) {
 //鼠標(biāo)移到哪個(gè)工具上,對(duì)應(yīng)內(nèi)容顯示出來(lái)
  this.showIndex = index;
 },
 mouseLeave(){
 //鼠標(biāo)移出工具區(qū)域后1秒,內(nèi)容區(qū)域消失 
  let timer = setTimeout(() => {
   this.showIndex = 0;
   clearTimeout(timer)
  }, 500);
 }
 },
 mounted: function () {
 window.addEventListener('scroll', this.handleScroll, true); // 監(jiān)聽(tīng)(綁定)滾輪滾動(dòng)事件
 },
 destroyed() {
 window.removeEventListener('scroll', this.handleScroll); //離開(kāi)頁(yè)面需要移除這個(gè)監(jiān)聽(tīng)的事件
 }

}
</script>

如果遇到scroll一直打印是0,看是否樣式寫了overflow:auto去掉即可;或者給父級(jí)撐滿屏幕;

看完上述內(nèi)容,你們對(duì)vue中怎么監(jiān)聽(tīng)回到頂部滾動(dòng)事件有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI