欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Vue:window.onresize

程序员文章站 2022-07-05 16:53:02
1. 添加属性screenHeight 和 timer。 screenHeight: window.innerHeight timer: '' // window.onresize函数频繁调用时,页面抖动较大,设定间隔 2. 在mounted 钩子函数中监听onresize事件 let that = ......

1. 添加属性screenheight 和 timer。

screenheight: window.innerheight

timer: '' //  window.onresize函数频繁调用时,页面抖动较大,设定间隔

2. 在mounted 钩子函数中监听onresize事件

let that = this

window.onresize = () => {

    if (!that.timer) {

        that.timer = true

        settimeout(() => {

            that.timer = false

            that.screenheight = window.innerheight

        }, 600)

    }

}