您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(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è)資訊頻道,感謝大家的支持。
免責(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)容。