index.vue 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
<template>
  <uni-resize-sensor @animationstart.once="update">
    <div @scroll="update">
      <div />
    </div>
    <div @scroll="update">
      <div />
    </div>
  </uni-resize-sensor>
</template>
11
<script>
12 13
const MAX = 100000

14 15 16 17 18 19 20 21 22 23 24
export default {
  name: 'ResizeSensor',
  props: {
    initial: {
      type: [Boolean, String],
      default: false
    }
  },
  data: function () {
    return {
      size: {
25 26
        width: -1,
        height: -1
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
      }
    }
  },
  watch: {
    size: {
      deep: true,
      handler: function (size) {
        this.$emit('resize', Object.assign({}, size))
      }
    }
  },
  mounted: function () {
    if (this.initial === true) {
      this.$nextTick(this.update)
    }

    if (this.$el.offsetParent !== this.$el.parentNode) {
      this.$el.parentNode.style.position = 'relative'
    }

47
    if (!('AnimationEvent' in window)) {
48 49 50
      this.reset()
    }
  },
51 52 53
  activated () {
    this.reset()
  },
54 55
  methods: {
    reset: function () {
56 57 58 59 60 61
      const expand = this.$el.firstChild
      expand.scrollLeft = MAX
      expand.scrollTop = MAX
      const shrink = this.$el.lastChild
      shrink.scrollLeft = MAX
      shrink.scrollTop = MAX
62 63 64 65
    },
    update: function () {
      this.size.width = this.$el.offsetWidth
      this.size.height = this.$el.offsetHeight
66
      this.reset()
67 68 69 70 71 72 73
    }
  }
}

</script>

<style>
74
@keyframes once-show {
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
  from {
    top: 0;
  }
}
uni-resize-sensor,
uni-resize-sensor > div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
uni-resize-sensor {
  display: block;
  z-index: -1;
  visibility: hidden;
92
  animation: once-show 1ms;
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
}
uni-resize-sensor > div > div {
  position: absolute;
  left: 0;
  top: 0;
}
uni-resize-sensor > div:first-child > div {
  width: 100000px;
  height: 100000px;
}
uni-resize-sensor > div:last-child > div {
  width: 200%;
  height: 200%;
}
</style>