echart / vue 实现自适应

方法一 elementResizeDetectorMaker

1.下载 yarn add elementResizeDetectorMaker
2.引入 import elementResizeDetectorMaker from “element-resize-detector”
3.使用
var dom = document.getElementById("container")

			//  随外层div的大小变化自适应
            const _this = this
            let erd = elementResizeDetectorMaker()
            erd.listenTo(dom, () => {
                _this.$nextTick(() => {
                    this.myChart1.resize()
                })
            })

方法二 window.onresize

mounted() {
        // 挂载window.onresize方法
        const that = this
        window.onresize = () => {
            // $(".online").width("25vw")
            // $(".online").height("21vw")
            // this.myChart2.resize()
            return (() => {
                window.screenWidth = document.body.clientWidth
                that.screenWidth = window.screenWidth
                let height1 = $(".report1").width()
                $(".report1").css("height", height1)
                let height2 = $(".report2").width()
                $(".report2").css("height", height2)
            })()
        }
      
    },

 watch: {
        screenWidth(val) {
            // 为了避免频繁触发resize函数导致页面卡顿,使用定时器
            if (!this.timer) {
                // 一旦监听到的screenWidth值改变,就将其重新赋给data里的screenWidth
                this.screenWidth = val
                this.timer = true

                setTimeout(() => {
                    // 处理宽度
                    this.timer = false
                    // console.log(this.screenWidth)
                }, 400)
            }
        },
    },
上一篇:123


下一篇:窗口滑动指定的距离(js代码实现)