html页面自动刷新滚动,VUE实现HTML页面滚动,标题实时刷新

本文介绍了一种使用JavaScript监听滚动事件,并结合debounce技术优化性能的方法来实现在页面滚动过程中,根据视口位置自动高亮显示当前可见区域内的元素。通过计算视口与元素的相对位置,确定哪个元素位于视口中并突出显示。
摘要由CSDN通过智能技术生成

bcba6ac64797

follow.gif

源码

current card is {{title}}

v-for="(item,index ) in list"

:c-data="item"

:key="index">

{{item}}

export default {

data () {

return {

title: 'hey',

list: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

}

},

mounted () {

let timer = null

window.addEventListener('scroll', () => {

if (timer) {

clearTimeout(timer)

}

timer = setTimeout(() => {// debounce处理滚动

let ps = document.getElementsByClassName('section')//获取所有card

for(let i=0;i

let e=ps[i]

let rec = e.getBoundingClientRect()//获取card相对视口的属性

let h = e.offsetHeight //e的高度,如果为固定值,则可以不用获取,直接写该固定值

let ch = window.innerHeight / 2 //视口的中间线

if (ch >= rec.top && ch <= (rec.top + h)) {//当视口的中间线被包含在该card中,改变title为其相关值

console.log(ch, rec.top, h)

let cd = e.getAttribute('c-data')

this.title = cd

break

}

}

}, 500)

})

}

}

.title {

position: fixed;

top: 0;

background: burlywood;

width: 100%;

}

.section,.footer{

height: 250px;

width: 90%;

display: flex;

background: azure;

box-shadow: 2px 2px 8px 2px black;

border-radius: 7px;

margin: 20px auto;

p {

margin: auto;

}

}

原理

1.监听window scroll事件,利用debounce处理滚动事件

2.获取所有card元素

3.遍历card元素,找出centerline所在的card元素

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值