- 微信客服
工作日 8:30-12:00 14:30-18:30
navigationbar相信大家都不陌生把?今天我们就来说说自定义navigationbar,把它改变成我们想要的样子(搜索框 胶囊、搜索框 返回按钮 胶囊等)。
window全局配置里有个参数:navigationstyle(导航栏样式),default=默认样式,custom=自定义样式。
"window": { "navigationstyle": "custom" } 复制代码
让我们看看隐藏后的效果:
可以看到原生的navigationbar已经消失了,剩下孤零零的胶囊按钮,胶囊按钮是无法隐藏的。
我们用wx.getmenubuttonboundingclientrect() 【官方文档】 获取胶囊按钮的布局位置信息,坐标信息以屏幕左上角为原点:
const menubuttoninfo = wx.getmenubuttonboundingclientrect(); 复制代码
width | height | top | right | bottom | left |
---|---|---|---|---|---|
宽度 | 高度 | 上边界坐标 | 右边界坐标 | 下边界坐标 | 左边界坐标 |
下面是官方给的示意图,方便大家理解几个坐标。
用wx.getsysteminfosync() 【官方文档】 获取系统信息,里面有个参数:statusbarheight(状态栏高度),是我们后面计算整个导航栏的高度需要用到的。
const systeminfo = wx.getsysteminfosync(); 复制代码
我们先要知道导航栏高度是怎么组成的, 计算公式: 导航栏高度 = 状态栏到胶囊的间距(胶囊距上距离-状态栏高度) * 2 胶囊高度 状态栏高度 。
自定义导航栏会应用到多个、甚至全部页面,所以封装成组件,方便调用;下面是我写的一个简单例子:
app.js
app({ onlaunch: function(options) { const that = this; // 获取系统信息 const systeminfo = wx.getsysteminfosync(); // 胶囊按钮位置信息 const menubuttoninfo = wx.getmenubuttonboundingclientrect(); // 导航栏高度 = 状态栏到胶囊的间距(胶囊距上距离-状态栏高度) * 2 胶囊高度 状态栏高度 that.globaldata.navbarheight = (menubuttoninfo.top - systeminfo.statusbarheight) * 2 menubuttoninfo.height systeminfo.statusbarheight; that.globaldata.menuright = systeminfo.screenwidth - menubuttoninfo.right; that.globaldata.menubotton = menubuttoninfo.top - systeminfo.statusbarheight; that.globaldata.menuheight = menubuttoninfo.height; }, // 数据都是根据当前机型进行计算,这样的方式兼容大部分机器 globaldata: { navbarheight: 0, // 导航栏高度 menuright: 0, // 胶囊距右方间距(方保持左、右间距一致) menubotton: 0, // 胶囊距底部间距(保持底部间距一致) menuheight: 0, // 胶囊高度(自定义内容可与胶囊高度保证一致) } }) 复制代码
app.json
{ "pages": [ "pages/index/index" ], "window": { "navigationstyle": "custom" }, "sitemaplocation": "sitemap.json" } 复制代码
下面为组件代码: /components/navigation-bar/navigation-bar.wxml
复制代码
/components/navigation-bar/navigation-bar.json
{ "component": true } 复制代码
/components/navigation-bar/navigation-bar.js
const app = getapp() component({ properties: { // defaultdata(父页面传递的数据-就是引用组件的页面) defaultdata: { type: object, value: { title: "我是默认标题" }, observer: function(newval, oldval) {} } }, data: { navbarheight: app.globaldata.navbarheight, menuright: app.globaldata.menuright, menubotton: app.globaldata.menubotton, menuheight: app.globaldata.menuheight, }, attached: function() {}, methods: {} }) 复制代码
/components/navigation-bar/navigation-bar.wxss
.nav-bar{ position: fixed; width: 100%; top: 0; color: #fff; background: #000;} .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
复制代码
/pages/index/index.json
{ "usingcomponents": { "navigation-bar": "/components/navigation-bar/navigation-bar" } } 复制代码
/pages/index/index.js
const app = getapp(); page({ data: { // 组件参数设置,传递到组件 defaultdata: { title: "我的j9九游主页", // 导航栏标题 } }, onload() { console.log(this.data.height) } }) 复制代码
效果图:
好了,以上就是全部代码了,大家可以文中复制代码,也可以 【下载源码】,直接到开发者工具里运行,记得appid用自己的或者测试哦!
下面附几张其它小程序的效果图,大家也可以尝试照着做:
工作日 8:30-12:00 14:30-18:30