您好,登錄后才能下訂單哦!
1、監(jiān)聽滾動(dòng)事件
利用VUE寫一個(gè)在控制臺(tái)打印當(dāng)前的scrollTop,
首先,在mounted鉤子中給window添加一個(gè)滾動(dòng)滾動(dòng)監(jiān)聽事件,
mounted () {
window.addEventListener('scroll', this.handleScroll)
},
然后在方法中,添加這個(gè)handleScroll方法
handleScroll () {
var scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop
console.log(scrollTop)
},
2、監(jiān)聽元素到頂部的距離 ?并判斷滾動(dòng)的距離如果大于了元素到頂部的距離時(shí),設(shè)置searchBar為true,否則就是false
handleScroll () {
let scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop
let offsetTop = document.querySelector('#searchBar').offsetTop
scrollTop > offsetTop ? this.searchBarFixed = true : this.searchBarFixed = false
},
注意,如果離開該頁面需要移除這個(gè)監(jiān)聽的事件,不然會(huì)報(bào)錯(cuò)。
destroyed () {
window.removeEventListener('scroll', this.handleScroll)
},
?
免責(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)容。