|
@@ -28,25 +28,53 @@ export default {
|
|
|
boxW: document.body.clientWidth // 屏幕宽度
|
|
|
}
|
|
|
},
|
|
|
- computed: {},
|
|
|
+ watch: {
|
|
|
+ list () {
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.setPosition()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
created () {
|
|
|
|
|
|
},
|
|
|
mounted () {
|
|
|
- this.init()
|
|
|
+ this.windowResize()
|
|
|
this.$nextTick(() => {
|
|
|
- this.setPosition()
|
|
|
+ this.init()
|
|
|
})
|
|
|
+ // $('.bc-wraper').on('resize', a)
|
|
|
+ // setTimeout(function () {
|
|
|
+ // console.log('off click')
|
|
|
+ // $('.bc-wraper').off('resize', a)
|
|
|
+ // }, 5000)
|
|
|
+ // function a () {
|
|
|
+ // console.log(2222)
|
|
|
+ // }
|
|
|
+ },
|
|
|
+ beforeDestroy () {
|
|
|
+ window.$(window).off('resize', this.resizeFunc)
|
|
|
},
|
|
|
methods: {
|
|
|
+ resizeFunc () {
|
|
|
+ // console.log(123132)
|
|
|
+ this.init()
|
|
|
+ this.setPosition()
|
|
|
+ },
|
|
|
+ windowResize () {
|
|
|
+ let _this = this
|
|
|
+ // debugger
|
|
|
+ window.$(window).on('resize', _this.resizeFunc)
|
|
|
+ },
|
|
|
init () {
|
|
|
this.boxW = document.querySelector('.water-fall').getBoundingClientRect().width
|
|
|
this.wfitemW = (this.boxW - this.gap * (this.colNum - 1)) / this.colNum
|
|
|
},
|
|
|
setPosition () {
|
|
|
+ // console.log(this.list)
|
|
|
let nodeList = document.querySelectorAll('.wf-item')
|
|
|
nodeList.forEach((e, i) => {
|
|
|
- console.log(e.getBoundingClientRect())
|
|
|
+ // console.log(e.getBoundingClientRect())
|
|
|
let itemH = e.getBoundingClientRect().height
|
|
|
let itemW = this.wfitemW
|
|
|
let itemT = 0
|
|
@@ -56,12 +84,14 @@ export default {
|
|
|
// let itemT = rowIndex*itemW +
|
|
|
if (i < 3) {
|
|
|
itemL = i * (itemW + this.gap)
|
|
|
+ // console.log(itemL)
|
|
|
this.lastItem.push({
|
|
|
t: itemT + itemH + this.gap,
|
|
|
l: itemL
|
|
|
})
|
|
|
} else {
|
|
|
let minItem = this.findMinTopItem()
|
|
|
+ // console.log(minItem)
|
|
|
itemL = minItem.item.l
|
|
|
itemT = minItem.item.t
|
|
|
this.lastItem[minItem.index] = {
|
|
@@ -75,6 +105,7 @@ export default {
|
|
|
top: `${itemT}px`,
|
|
|
left: `${itemL}px`
|
|
|
}
|
|
|
+ // console.log(this.list)
|
|
|
// this.list[i].style.width =
|
|
|
// this.list[i].style.height = `${itemH}px`
|
|
|
// this.list[i].style.top = `${itemT}px`
|