vue项目中遇到需要监听页面某个元素距顶部距离实现吸顶效果,正常的window.addEventListener('scroll', this.handleScroll)完全失效,经过一段时间的探索发现这个事件在子组件中会遇到问题。
可以用元素上的 @scroll事件来监听滚动,但有一点要注意,scroll的元素需要确认 设置overflow-y:scroll;height:100%的样式。
下面附实现成功的代码:
1.顶部元素添加 @scroll事件监听

  <div class="specialty-store-page" ref="scrollBox" @scroll="handleBlScroll">

2.确保监听的元素 overflow-y:scroll;height:100%
3.监听事件

   handleBlScroll() {
      let _blTop = this.$refs.bl.getBoundingClientRect().top
      this.tabFixed = _blTop < 46
      this.navShowFlag = this.$refs.scrollBox.scrollTop > this.RootEM * 0.92
      let _gcTop = this.$refs.goodsContainer.getBoundingClientRect().top//这里是子元素距顶部的高度
    }

可以在父元素中添加滚动,通过 this.$refs.goodsContainer.getBoundingClientRect().top来获取子元素的顶部距离进行判断

Logo

前往低代码交流专区

更多推荐