vue中粘性定位插件。

为什么要用插件那?因为项目要兼容ie,低版本ie可不支持position: -webkit-sticky;
没办法只能自己搞一个啦,不说废话直接上代码,复制走就可以使用啦。

<!--sticky组件-->
<template>
  <!--盒子容器-->
  <section ref="$box" class="c-sticky-box" :style="boxStyle">
    <!--内容容器-->
    <div ref="$content" class="content positionDiv" :style="contentStyle">
      <slot>
          //内容区域
      </slot>
    </div>
  </section>
</template>

<script>

export default {
  props: {
    top: {
      type: String,
      default: 'unset'
    },
    
    //left一般用不上
    left: {
      type: String,
      default: 'unset'
    }
  },
  data() {
    return {
      boxStyle: {
        position: 'static',
        top: 0,
        left: 0,
        width: 'auto', // 占位,为了形成数据绑定
        height: 'auto'
      },
      contentStyle: {
        position: 'static',
        top: 0,
        left: '247px',
        width: 'auto'
      },
      isFixedX: false, // 是否已经设置为fixed布局,用于优化性能,防止多次设置
      isFixedY: false, // 是否已经设置为fixed布局,用于优化性能,防止多次设置
      // isSupport: this.cssSupport('position', 'sticky')
      isSupport: false
    }
  },

  mounted() {
    if (!this.isSupport) { // 不支持sticky
      this.getContentSize() // 获取内容宽高
      this.scrollHandler() // 主动触发一次位置设置操作
      window.addEventListener('resize', this.onResize)
      window.addEventListener('scroll', this.scrollHandler, true)
    } else {
      this.boxStyle = {
        position: 'sticky',
        top: this.top,
        left: this.left
      }
    }
  },

  beforeDestroy() {
    if (!this.isSupport) {
      window.removeEventListener('resize', this.onResize)
      window.removeEventListener('scroll', this.scrollHandler, true)
    }
  },

  methods: {
    // 判断是否支持某样式的函数
    cssSupport(attr, value) {
      const element = document.createElement('div')
      if (attr in element.style) {
        element.style[attr] = value
        return element.style[attr] === value
      } else {
        return false
      }
    },

    // 获取dom数据
    getContentSize() {
      // 获取内容容器宽高信息
      const style = window.getComputedStyle(this.$refs.$content)
      // 设置盒子容器的宽高,为了后续占位
      // this.boxStyle.width = style.width
      if (parseInt(style.width) > 1666) {
        this.contentStyle.width = `${parseInt(style.width.replace('px', '')) + 43}px`//盒子的宽度,谷歌可以完美适应,ie就需要自己算啦,我的谷歌和ie相差43.
      } else {
        this.contentStyle.width = style.width
      }
      // this.boxStyle.height = style.height
    },

    // 页面缩放重置大小时,重新计算其位置
    onResize() {
      const { $box } = this.$refs
      const { contentStyle } = this
      const boxTop = $box.getBoundingClientRect().top
      // const boxLeft = $box.getBoundingClientRect().left
      if (contentStyle.position === 'fixed') {
        contentStyle.top = this.top === 'unset' ? `${boxTop}px` : '125px'//开启粘性定位时,距离头部的高度,我的是125,根据你们的需要自己修改。
        // contentStyle.left = this.left === 'unset' ? `${boxLeft}px` : this.left
      }
    },

    scrollHandler() {
      const { $content, $box } = this.$refs
      const { contentStyle } = this
      const boxTop = $box.getBoundingClientRect().top
      const boxLeft = $box.getBoundingClientRect().left
      const contentTop = $content.getBoundingClientRect().top
      const contentLeft = $content.getBoundingClientRect().left

      if (this.top !== 'unset') {
        if (boxTop > parseInt(this.top) && this.isFixedY) {
          this.isFixedY = false
          contentStyle.position = 'static'
        } else if (boxTop < parseInt(this.top) && !this.isFixedY) {
          this.isFixedY = true
          contentStyle.position = 'fixed'
          this.onResize()
        }

        // 当位置距左位置不对时,重新设置fixed对象left的值,防止左右滚动位置不对问题
        if (contentLeft !== boxLeft && this.left === 'unset') {
          this.onResize()
        }
      }

      if (this.left !== 'unset') {
        if (boxLeft > parseInt(this.left) && this.isFixedX) {
          this.isFixedX = false
          contentStyle.position = 'static'
        } else if (boxLeft < parseInt(this.left) && !this.isFixedX) {
          this.isFixedX = true
          contentStyle.position = 'fixed'
          this.onResize()
        }

        // 当位置距左位置不对时,重新设置fixed对象left的值,防止左右滚动位置不对问题
        if (contentTop !== boxTop && this.top === 'unset') {
          this.onResize()
        }
      }
    }
  }

}
</script>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值