美文网首页
VUE实现HTML页面滚动,标题实时刷新

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

作者: redpeanuts | 来源:发表于2020-05-11 15:37 被阅读0次
follow.gif

源码

<template>
  <div>
    <h1 class="title">current card is {{title}}</h1>
    <div class="section"
         v-for="(item,index )  in list"
         :c-data="item"
         :key="index">
      <p>{{item}}</p>
    </div>
    <div class="footer" style="background:slategray">
      <p>footer</p>
    </div>
  </div>
</template>
<script>
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<ps.length;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)

    })
  }
}
</script>
<style lang="less" scoped>
.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;
  }
}
</style>

原理

1.监听window scroll事件,利用debounce处理滚动事件
2.获取所有card元素
3.遍历card元素,找出centerline所在的card元素

相关文章

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

    源码 原理 1.监听window scroll事件,利用debounce处理滚动事件2.获取所有card元素3.遍...

  • 2019-10-16

    [Vue+WebSocket 实现页面实时刷新长连接] *最近vue项目要做数据实时刷新,折线图每秒重画一次,数据...

  • keepAlive使用方法

    vue单页面,多路由,前进刷新,后退不刷新 目的:vue-cli构建的vue单页面应用,某些特定的页面,实现前进刷...

  • SPA及其优缺点

    SPA:单页面web应用,一般整个应用只有一个html页面,通过前端路由实现无刷新跳转。 Vue就是SPA应用的典...

  • SPA及其优缺点

    SPA:单页面web应用,一般整个应用只有一个html页面,通过前端路由实现无刷新跳转。 Vue就是SPA应用的典...

  • 「Vue」点击滚动页面与$nextTick问题解决

    这一篇主要讲述今天使用Vue点击滚动的实现以及Vue在页面渲染未完成时滚动偏移的问题 页面结构 添加滚动前页面的基...

  • web开发 vscode插件推荐

    live:Server html热加载。修改html保存后页面自动更新。无需刷新页面 vuter:vue开发必备 ...

  • 如何获取父级iframe的dom,并且设置高度

    场景:需要将vue嵌套在html页面的iframe中,根据vue页面的高度设置外层的iframe高度防止出现滚动条...

  • JS - 单页面无限加载页面

    DEMO功能: 实现听过滚动无限刷新增添新元素 监听 scroll 事件 通过监听 scroll 事件,在页面滚动...

  • websoket的简单使用

    最近vue项目要做数据实时刷新,当用户用手机或者在后台取号结束,投屏需要做到实时刷新。 首先我们在页面刚进去的时候...

网友评论

      本文标题:VUE实现HTML页面滚动,标题实时刷新

      本文链接:https://www.haomeiwen.com/subject/oapunhtx.html