Macro Da

每天学一点,成长多一点!

微信小程序获取导航栏胶囊宽度高度和边距

如需自定义导航栏,需增加配置:

{
  "usingComponents": {},
  "navigationStyle": "custom",
  "navigationBarTextStyle": "black"
}

再通过微信文档提供的API方法,通过计算获取到胶囊的各项长度

// 获取导航栏高度
  getNavigationInfo: function () {
    var that = this;
    wx.getSystemInfo({
      success (res) {
        const menuButton = wx.getMenuButtonBoundingClientRect();
        that.setData({
          navInfo: {
            top: menuButton.top,
            right: res.windowWidth - menuButton.right,
            width: menuButton.width,
            height: menuButton.height,
            bottom: menuButton.top - res.statusBarHeight
          }
        })
      }
    })
  }

其中每项对应值如下图示:

《微信小程序获取导航栏胶囊宽度高度和边距》

有了这个胶囊的位置等数据,我们就可以实现各种个性化的导航栏,如:

《微信小程序获取导航栏胶囊宽度高度和边距》
渐变背景
《微信小程序获取导航栏胶囊宽度高度和边距》
左侧个性化胶囊
《微信小程序获取导航栏胶囊宽度高度和边距》
放置搜索框

以上效果可以封装成自定义组件

点赞

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注