美文网首页
Vue 事件监听实现导航栏吸顶效果(页面滚动后定位)

Vue 事件监听实现导航栏吸顶效果(页面滚动后定位)

作者: Howie126313 | 来源:发表于2017-11-19 15:05 被阅读0次

    所说的吸顶效果就是在页面没有滑动之前,导航栏的效果如下图所示:



    当页面向上滑动之后,导航栏始终固定在页面的上方。


    具体代码:

    写入事件监听,监听滚动条。

    mounted () {
          // 事件监听滚动条
          window.addEventListener('scroll', this.watchScroll)
        }
    

    然后在 methods 中写入 watchScroll 方法。

    methods: {
          watchScroll () {
            var scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop
            //  当滚动超过 50 时,实现吸顶效果
            if (scrollTop > 49) {
              this.navBarFixed = true
            } else {
              this.navBarFixed = false
            }
         }
    }
    

    在对应的标签中加入修改后的样式

    <div :class="navBarFixed == true ? 'navBarWrap' :''">
    
    .navBarWrap {
        position:fixed;
        top:0;
        z-index:999;
      }
    

    END~~

    相关文章

      网友评论

          本文标题:Vue 事件监听实现导航栏吸顶效果(页面滚动后定位)

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