uniapp获取屏幕宽度
时间: 2023-09-23 13:13:38 浏览: 316
在uniapp中,你可以通过`uni.getSystemInfo`方法获取屏幕宽度。具体的代码如下:
```javascript
uni.getSystemInfo({
success: function (res) {
// 屏幕宽度,单位为px
var screenWidth = res.screenWidth;
console.log(screenWidth);
}
});
```
这样就可以获取到屏幕的宽度了。注意,`uni.getSystemInfo`是一个异步方法,需要通过回调函数获取返回结果。
相关问题
uniapp 获取屏幕宽度
在uniapp中,可以通过uni.getSystemInfoSync()方法获取屏幕宽度。具体代码如下:
```
let systemInfo = uni.getSystemInfoSync();
let screenWidth = systemInfo.screenWidth;
console.log(screenWidth);
```
uniapp app获取屏幕宽度
在uniapp中,可以使用uni.getSystemInfoSync()方法获取设备信息,其中包括设备屏幕宽度。示例代码如下:
```
// 获取设备信息
const systemInfo = uni.getSystemInfoSync();
// 获取屏幕宽度
const screenWidth = systemInfo.screenWidth;
console.log(screenWidth);
```
在上述代码中,`uni.getSystemInfoSync()`方法会同步获取设备信息,返回一个包含设备信息的对象`systemInfo`,包括屏幕宽度、高度等信息。我们可以通过`systemInfo.screenWidth`属性获取屏幕宽度。
阅读全文