前言
創(chuàng)新互聯(lián)成立于2013年,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目做網(wǎng)站、成都網(wǎng)站建設(shè)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢想脫穎而出為使命,1280元龍安做網(wǎng)站,已為上家服務(wù),為龍安各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:13518219792
本文主要給大家介紹了關(guān)于微信小程序自定義導(dǎo)航的相關(guān)內(nèi)容,詳細(xì)代碼請見github,請點(diǎn)擊地址 (本地下載),其中有原生小程序的實(shí)現(xiàn),也有wepy版本的實(shí)現(xiàn)
了解小程序默認(rèn)導(dǎo)航
如上圖所示,微信導(dǎo)航分為兩部分,第一個(gè)部分為statusBarHeight,劉海屏手機(jī)(iPhone X,小米8等)會(huì)比其他的手機(jī)高很多,第二部分為titleBarHeight,安卓和IOS的高度不同,但是IOS高度是一樣的,IOS高度是一樣的,
所以我們要實(shí)現(xiàn)一個(gè)兼容不同手機(jī)的導(dǎo)航必須要根據(jù)不同的手機(jī)實(shí)現(xiàn)statusBarHeight和titleBarHeight
第一步:全局設(shè)置
把a(bǔ)pp.json中的window中的navigationStyle設(shè)置為custom,官方文檔鏈接
設(shè)置完之后發(fā)現(xiàn)導(dǎo)航欄變成了如下圖所示,只剩下了右上角膠囊按鈕
第二步:確定導(dǎo)航欄兩部分的高度
(1)確定第一部分statusBarHeight的高度,這部分是手機(jī)用來展示時(shí)間,信號(hào)和手機(jī)電量的,我們可以從wx.getSystemInfo從獲得
wx.getSystemInfo({ success: function(res) { console.log(res.statusBarHeight) } })
(2)第二部分titleBarHeight為小程序?qū)Ш綑诘母叨?,?jīng)過我查詢無數(shù)文檔和實(shí)踐得知,在iPhone上titleBarHeight=44px
,在安卓上titleBarHeight = 48px
(3)最后總結(jié)一下微信小程序的高度代碼為
wx.getSystemInfo({ success: function(res) { let titleBarHeight = 0 if (res.model.indexOf('iPhone') !== -1) { titleBarHeight = 44 } else { titleBarHeight = 48 } that.setData({ statusBarHeight: res.statusBarHeight, titleBarHeight: titleBarHeight }); }, failure() { that.setData({ statusBarHeight: 0, titleBarHeight: 0 }); } })
第三步:編寫Navigation組件
(1)Navigation.js
const app = getApp(); Component({ properties: { //小程序頁面的標(biāo)題 title: { type: String, default: '默認(rèn)標(biāo)題' }, //是否展示返回和主頁按鈕 showIcon: { type: Boolean, default: true } }, data: { statusBarHeight: 0, titleBarHeight: 0, }, ready: function () { // 因?yàn)槊總€(gè)頁面都需要用到這連個(gè)字段,所以放到全局對象中 if (app.globalData && app.globalData.statusBarHeight && app.globalData.titleBarHeight) { this.setData({ statusBarHeight: app.globalData.statusBarHeight, titleBarHeight: app.globalData.titleBarHeight }); } else { let that = this wx.getSystemInfo({ success: function(res) { if (!app.globalData) { app.globalData = {} } if (res.model.indexOf('iPhone') !== -1) { app.globalData.titleBarHeight = 44 } else { app.globalData.titleBarHeight = 48 } app.globalData.statusBarHeight = res.statusBarHeight that.setData({ statusBarHeight: app.globalData.statusBarHeight, titleBarHeight: app.globalData.titleBarHeight }); }, failure() { that.setData({ statusBarHeight: 0, titleBarHeight: 0 }); } }) } }, methods: { headerBack() { wx.navigateBack({ delta: 1, fail(e) { wx.switchTab({ url: '/pages/main/main' }) } }) }, headerHome() { wx.switchTab({ url: '/pages/main/main' }) } } })
(2) Navigation.wxml
{{title}}
css就不貼了,有點(diǎn)多,需要的朋友可以去的github上拿 點(diǎn)擊地址(本地下載)
第四步:展示效果
iPhone X展示效果
iPhone 7展示效果
小米8展示效果
用我們公司的測試機(jī)基本上都試了一遍,基本上都能正常顯示,別問我為什么樣式和右邊這么相似,因?yàn)槲沂墙泄驹O(shè)計(jì)給了我樣式
解決下拉刷新的問題
圖一為默認(rèn)導(dǎo)航下的下拉刷新,顯示正常,圖二為自定義導(dǎo)航欄下的下拉刷新,顯示異常,中間有一大塊空白。
如果解決這個(gè)問題,我們自定義一個(gè)加載動(dòng)畫,藏在導(dǎo)航底下
(1)把a(bǔ)pp.json中的window設(shè)置為如下,這樣加載動(dòng)畫就隱藏了,因?yàn)榧虞d動(dòng)畫必須要設(shè)置window的backgroundTextStyle=black
和backgroundColor=#F3F3F3
才會(huì)顯示如上圖所示
window: { "navigationStyle": "custom", "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#fff", "navigationBarTitleText": "ICY買手店", "navigationBarTextStyle": "black"}
(2)修改Navigation.wxml
{{title}}
效果如下圖,加載動(dòng)畫我可能寫的不太好看
問題:這樣做在iPhone上是能正常展示的,但是在安卓上還有一點(diǎn)小問題,自定義導(dǎo)航欄的標(biāo)題和圖標(biāo)有一起滑動(dòng)
注意點(diǎn)
(1)安卓手機(jī)下拉刷新還是會(huì)有一點(diǎn)點(diǎn)展示問題
(2)項(xiàng)目所有fixed的元素都需要改,top需要加上導(dǎo)航欄的高度
目前哪些小程序在用自定義導(dǎo)航欄
我所知道的有 “bilibili”,"票圈長視頻",我們公司的小程序也在計(jì)劃用
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問大家可以留言交流,謝謝大家對創(chuàng)新互聯(lián)的支持。