美文网首页
小程序自定义导航栏高度适配

小程序自定义导航栏高度适配

作者: 一知半解 | 来源:发表于2020-10-31 16:43 被阅读0次
      let res = wx.getSystemInfoSync()
      // 判断是否是安卓操作系统 (标题栏苹果为44px,安卓为48px)
      let titleH;
      if(res && res['system']){
        if(res['system'].indexOf('Android')>0){
          titleH = 48
        }else{
          titleH = 44
        }
        this.globalData.navHeight = titleH + res['statusBarHeight']
      }

参考链接

相关文章

网友评论

      本文标题:小程序自定义导航栏高度适配

      本文链接:https://www.haomeiwen.com/subject/zjwsvktx.html