vue外包项目要求页面滚动的时候,顶部导航跟随滚动,但是顶部导航的背景是透明的,这就需要根据距离顶部的距离给一个背景色,首先需要获取距离顶部的距离
mounted() {
window.addEventListener('scroll', this.getScrollInfo, true)
},
methods: {
getScrollInfo() {
this.top = window.pageYOffset
console.log('滚动高度', window.pageYOffset)
},
}