uniapp移动开发获取当前设备宽高
时间: 2023-08-06 15:10:12 浏览: 97
uni-app 组件里面获取元素宽高的实现
你可以使用uniapp中的API来获取设备宽高。具体代码如下:
```javascript
// 获取屏幕宽高
let screenWidth = uni.getSystemInfoSync().screenWidth;
let screenHeight = uni.getSystemInfoSync().screenHeight;
console.log("屏幕宽度:" + screenWidth);
console.log("屏幕高度:" + screenHeight);
```
其中,`uni.getSystemInfoSync()`是获取设备信息的API,返回一个包含设备信息的对象。通过该对象的`screenWidth`和`screenHeight`属性可获取当前设备的宽高。
阅读全文