最近写了一个VUE的web app项目,需要实现某个部位吸顶的效果。即
image.png
1、监听滚动事件
利用VUE写一个在控制台打印当前的scrollTop,
首先,在mounted钩子window添加一个滚动滚动监听事件,
mounted () { window.addEventListener('scroll', this.handleScroll) },
然后在方法中,添加这个handleScroll方法
handleScroll () { let scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop console.log(scrollTop) },
2、监听元素到顶部的距离 并判断滚动的距离如果大于了元素到顶部的距离时searchBar为true,否则就是false
handleScroll () { let scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop let offsetTop = document.querySelector('#searchBar').offsetTop this.searchBarFixed = scrollTop > (offsetTop - 44) // 44px是导航标题头的高度},
先写一个该元素固定到顶部的样式,isFixed(less写法)
#searchBar{ .isFixed{ position:fixed; background-color:#fff; top:44px; // 44px是导航标题头的高度 z-index:999; } }
然后将需要固定的元素的class与searchBar进行绑定,如果searchBar为true时,就应用这个isFixed样式
<div class="searchBar" id="searchBar"> <ul :class="searchBarFixed === true? 'isFixed' :''"> <li>产品特色<i class="iconfont icon-jiantouxia"></i></li> <li>详细说明<i class="iconfont icon-jiantouxia"></i></li> <li>常见问题<i class="iconfont icon-jiantouxia"></i></li> </ul></div>
固定后的结果:
image.png
注意,如果离开该页面需要移除这个监听的事件,
destroyed () { window.removeEventListener('scroll', this.handleScroll) },
作者:竿牍
链接:https://www.jianshu.com/p/6f5f6b6c6580
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦