页面div 绑定 @scroll="scrollEvent" 方法,
<div class="container_wrap" @scroll="scrollChange" ref="container_wrap">
js 方法
methods:{
scrollChange() {
// this.scrollLeft = this.$refs.container_wrap.scrollLeft; // 距左边距离
// this.scrollTop = this.$refs.container_wrap.scrollTop; // 距上边距离
// if (this.scrollTop == 0) {
// this.positionIndex = 0
// } else if (this.scrollTop == 200) {
// this.positionIndex = 1
// }
console.log('页面滚动参数--------------', this.scrollTop);
},
}