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

时间:2022-12-06 23:34:55

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

Vue 事件监听实现导航栏吸顶效果(页面滚动后定位) 
Howie126313 
2017.11.19 15:05* 字数 100 阅读 3154评论 0

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


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

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


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

具体代码:

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

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~~