91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

vue如何監聽窗口高度

vue
養魚的貓咪
1355
2021-05-12 17:03:24
欄目: 編程語言

在vue中監聽窗口高度的方法:1.新建項目,引入vue;2.定義data值,記錄窗口高度;3.使用window.onresize獲取窗口高度;4.使用watch方法實時監聽窗口高度;

vue如何監聽窗口高度

具體步驟如下:

1.首先,新建一個html項目,并在項目中引入vue;

import Vue from 'vue'

2.引入vue后,在項目中定義一個data值,用于記錄窗口高度;

data(){

return{

clientHeight:'',

}

}

3.data值定義好后,使用window.onresize方法獲取窗口高度;

mounted(){

this.clientHeight = `${document.documentElement.clientHeight}`;

let that = this;

window.onresize = function(){

this.clientHeight = `${document.documentElement.clientHeight}`;

if(that.$refs.page){

that.$refs.page.style.minHeight = clientHeight - 100 + 'px';

}

}

}

4.最后,獲取到窗口高度后,使用watch方法即可實時監聽窗口高度;

watch:{

clientHeight(){

this.changeFixed(this.clientHeight)

}

}

0
沧州市| 龙门县| 兴业县| 葫芦岛市| 南郑县| 高雄县| 高陵县| 铜山县| 巴彦淖尔市| 修武县| 嫩江县| 宜君县| 两当县| 西乌珠穆沁旗| 灵武市| 乐安县| 文昌市| 永仁县| 垣曲县| 平山县| 尚志市| 佛教| 伽师县| 富源县| 永善县| 嘉禾县| 遂溪县| 镇江市| 通道| 千阳县| 南通市| 八宿县| 临海市| 灵台县| 黄平县| 临江市| 博白县| 布尔津县| 霍山县| 永吉县| 宁德市|