微信小程序获取头部高度

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

你可能感兴趣的:(微信小程序获取头部高度)