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

溫馨提示×

vue如何獲取屏幕的寬度

vue
養魚的貓咪
2188
2021-05-10 13:21:09
欄目: 編程語言

在vue中獲取屏幕寬度的方法有:1.使用document.documentElement方法獲取;2.在watch中實時監聽;3.使用mounted函數獲取;

vue如何獲取屏幕的寬度

具體方法如下:

1.使用document.documentElement方法獲取屏幕的寬高

windowWidth: document.documentElement.clientWidth, //獲取屏幕寬度

windowHeight: document.documentElement.clientHeight, //獲取屏幕高度

2.在watch中實時監聽屏幕寬高

watch: {

windowHeight (val) {

let that = this;

console.log("實時屏幕高度:",val, that.windowHeight );

},

windowWidth (val) {

let that = this;

console.log("實時屏幕寬度:",val, that.windowHeight );

}

},

3.使用mounted函數獲取屏幕寬高

mounted() {

var that = this;

window.onresize = () => {

return (() => {

window.fullHeight = document.documentElement.clientHeight;

window.fullWidth = document.documentElement.clientWidth;

that.windowHeight = window.fullHeight; //獲取屏幕高度

that.windowWidth = window.fullWidth; //獲取屏幕寬度

})()

};

},

0
莎车县| 德安县| 莱西市| 锡林浩特市| 吴忠市| 抚松县| 建德市| 西青区| 丰台区| 墨玉县| 越西县| 南乐县| 松阳县| 卢湾区| 大埔区| 婺源县| 井陉县| 县级市| 江山市| 琼结县| 京山县| 边坝县| 镇赉县| 青海省| 松原市| 靖宇县| 原平市| 利辛县| 太仓市| 岳池县| 施甸县| 加查县| 龙海市| 绥化市| 娱乐| 香港| 双鸭山市| 和平区| 手游| 吉安县| 博客|