微信小程序获取导航栏高度

小程序获取右上角胶囊位置信息

// 获取设备信息
uni.getSystemInfo({
success: e => { // { statusBarHeight: 20, ... },单位为 px
// 获取右上角胶囊的位置信息
let info = uni.getMenuButtonBoundingClientRect() // { bottom: 58, height: 32, left: 278, right: 365, top: 26, width: 87 },单位为 px
let CustomBar = info.bottom + info.top - e.statusBarHeight
console.log(‘设备信息‘,CustomBar)
}
})

微信小程序获取导航栏高度

上一篇:氚云前后代码小栗子,新增页面获取当前登录人管理的下级人员


下一篇:微信浏览器内 h5 直接唤醒 app 之 微信开放标签 wx-open-launch-app