赞
踩
# 安卓端 使用 uni.getSystemInfoSync().windowHeight 因为uni.getWindowInfo().windowHeight 高度有问题
# 在web端
# statusBarHeight 状态栏高度
# windowBottom TabBar高度
# windowTop 导航栏高度
# safeArea.height 安全区域高度 (ios下方 返回按钮栏下方有个安全区域,防止误触home横线)
- if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {
-
- const infos=uni.getWindowInfo()
-
- this.bgh=infos.windowHeight*2-infos.statusBarHeight*2-infos.windowBottom*2-infos.windowTop*2-infos.safeArea.height*2;
-
- }else{
-
- this.bgh=uni.getSystemInfoSync().windowHeight*2;
-
- }
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。