项目场景:
H5项目顶部Tab栏上对应多个标签,根据页面向上滚动高度,将活跃值切换到对应的标签上。
实现思路
- 获取到tab全部标签对应的offsetTop值,形成一个数组;
- 根据向上滚动的距离,与数组中的值进行比较,得到对应的索引;
- 最终获取的索引需要赋值给一个变量,而这个变量的初始值应该设置为数组长度 - 1,当我们数组中没有值与向上滚动距离匹配上是,默认显示最后一个tab标签。
测试代码
<body>
<button class="btn">随机数</button>
<script>
// 1. 定义的数组
const values = [100, 300, 500, 800, 1200]
// 2. 生成随机数
const elBtn = document.querySelector('.btn')
elBtn.onclick = () => {
let currentValue = Math.floor(Math.random() * 1500)
matchIndex(currentValue)
}
// 获取对应索引
function matchIndex(currentValue) {
let targetIndex = values.length - 1
for (let i = 0; i < values.length; i++) {
if (values[i] > currentValue) {
targetIndex = i - 1
break
}
}
if (targetIndex === -1) return
console.log(targetIndex)
}
</script>
希望对您有帮助,谢谢~