当前位置:   article > 正文

微信小程序自定义navigationBar顶部导航栏,兼容适配所有机型(附完整案例)_小程序自定义导航栏

小程序自定义导航栏

前言

navigationBar相信大家都不陌生把?今天我们就来说说自定义navigationBar,把它改变成我们想要的样子(搜索框+胶囊、搜索框+返回按钮+胶囊等)。

思路

  • 隐藏原生样式
  • 获取胶囊按钮、状态栏相关数据以供后续计算
  • 根据不同机型计算出该机型的导航栏高度,进行适配
  • 编写新的导航栏
  • 引用到页面

正文

一、隐藏原生的navigationBar

window全局配置里有个参数:navigationStyle(导航栏样式),default=默认样式,custom=自定义样式。

  1. "window": {
  2. "navigationStyle": "custom"
  3. }

让我们看看隐藏后的效果:

 可以看到原生的navigationBar已经消失了,剩下孤零零的胶囊按钮,胶囊按钮是无法隐藏的。

二、准备工作

1. 获取胶囊按钮的布局位置信息

我们用wx.getMenuButtonBoundingClientRect()【官方文档】获取胶囊按钮的布局位置信息,坐标信息以屏幕左上角为原点:

const menuButtonInfo = wx.getMenuButtonBoundingClientRect();
widthheighttoprightbottomleft
宽度高度上边界坐标右边界坐标下边界坐标左边界坐标
下面是官方给的示意图,方便大家理解几个坐标。

2. 获取系统信息

用wx.getSystemInfoSync()【官方文档】获取系统信息,里面有个参数:statusBarHeight(状态栏高度),是我们后面计算整个导航栏的高度需要用到的。

const systemInfo = wx.getSystemInfoSync();

三、计算公式

我们先要知道导航栏高度是怎么组成的,
计算公式:状态栏高度 + 44

实例 【源码下载】

自定义导航栏会应用到多个、甚至全部页面,所以封装成组件,方便调用;下面是我写的一个简单例子:

app.js

  1. App({
  2. onLaunch: function(options) {
  3. const that = this;
  4. // 获取系统信息
  5. const systemInfo = wx.getSystemInfoSync();
  6. // 胶囊按钮位置信息
  7. const menuButtonInfo = wx.getMenuButtonBoundingClientRect();
  8. // 导航栏高度 = 状态栏高度 + 44
  9. that.globalData.navBarHeight = systemInfo.statusBarHeight + 44;
  10. that.globalData.menuRight = systemInfo.screenWidth - menuButtonInfo.right;
  11. that.globalData.menuTop= menuButtonInfo.top;
  12. that.globalData.menuHeight = menuButtonInfo.height;
  13. },
  14. // 数据都是根据当前机型进行计算,这样的方式兼容大部分机器
  15. globalData: {
  16. navBarHeight: 0, // 导航栏高度
  17. menuRight: 0, // 胶囊距右方间距(方保持左、右间距一致)
  18. menuTop: 0, // 胶囊距顶部间距
  19. menuHeight: 0, // 胶囊高度(自定义内容可与胶囊高度保证一致)
  20. }
  21. })

app.json

  1. {
  2. "pages": [
  3. "pages/index/index"
  4. ],
  5. "window": {
  6. "navigationStyle": "custom"
  7. },
  8. "sitemapLocation": "sitemap.json"
  9. }

下面为组件代码:
/components/navigation-bar/navigation-bar.wxml

  1. <!-- 自定义顶部栏 -->
  2. <view class="nav-bar" style="height:{{navBarHeight}}px;">
  3. <input class="search" placeholder="输入关键词!" style="height:{{menuHeight}}px; min-height:{{menuHeight}}px; line-height:{{menuHeight}}px; left:{{menuRight}}px; top:{{menuTop}}px;"></input>
  4. </view>
  5. <!-- 占位,高度与顶部栏一样 -->
  6. <view style="height:{{navBarHeight}}px;"></view>

/components/navigation-bar/navigation-bar.json

  1. {
  2. "component": true
  3. }

/components/navigation-bar/navigation-bar.js

  1. const app = getApp()
  2. Component({
  3. properties: {
  4. // defaultData(父页面传递的数据-就是引用组件的页面)
  5. defaultData: {
  6. type: Object,
  7. value: {
  8. title: "我是默认标题"
  9. },
  10. observer: function(newVal, oldVal) {}
  11. }
  12. },
  13. data: {
  14. navBarHeight: app.globalData.navBarHeight,
  15. menuRight: app.globalData.menuRight,
  16. menuTop: app.globalData.menuTop,
  17. menuHeight: app.globalData.menuHeight,
  18. },
  19. attached: function() {},
  20. methods: {}
  21. })

/components/navigation-bar/navigation-bar.wxss

  1. .nav-bar{ position: fixed; width: 100%; top: 0; color: #fff; background: #000;}
  2. .nav-bar .search{ width: 60%; color: #333; font-size: 14px; background: #fff; position: absolute; border-radius: 50px; background: #ddd; padding-left: 14px;}

以下是调用页面的代码,也就是引用组件的页面:
/pages/index/index.wxml

<navigation-bar default-data="{{defaultData}}"></navigation-bar>

/pages/index/index.json

  1. {
  2. "usingComponents": {
  3. "navigation-bar": "/components/navigation-bar/navigation-bar"
  4. }
  5. }

/pages/index/index.js

  1. const app = getApp();
  2. Page({
  3. data: {
  4. // 组件参数设置,传递到组件
  5. defaultData: {
  6. title: "我的主页", // 导航栏标题
  7. }
  8. },
  9. onLoad() {
  10. console.log(this.data.height)
  11. }
  12. })

效果图:

在这里插入图片描述

好了,以上就是全部代码了,大家可以文中复制代码,也可以【下载源码】,直接到开发者工具里运行,记得appid用自己的或者测试哦!

下面附几张其它小程序的效果图,大家也可以尝试照着做:

在这里插入图片描述 

在这里插入图片描述

 总结

  • 本文写了自定义navigationBar的一些基础性东西,里面涉及组件用法、参数传递、导航栏相关。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/69361
推荐阅读
相关标签
  

闽ICP备14008679号