中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
嘉峪关市| 额尔古纳市| 连云港市| 晋宁县| 松江区| 邛崃市| 江永县| 云龙县| 喀什市| 余庆县| 沙湾县| 尼玛县| 周口市| 浮梁县| 苗栗市| 长垣县| 平利县| 长岛县| 乌恰县| 新巴尔虎左旗| 克山县| 丰都县| 东丰县| 中山市| 九江市| 莲花县| 威远县| 汝南县| 平原县| 湖口县| 四平市| 兴隆县| 平遥县| 六盘水市| 宁远县| 渝北区| 长乐市| 手机| 峨边| 双牌县| 江华|