這篇文章將為大家詳細(xì)講解有關(guān)微信小程序中如何實(shí)現(xiàn)底部導(dǎo)航欄,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)是一家專注于成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作和成都溫江機(jī)房的網(wǎng)絡(luò)公司,有著豐富的建站經(jīng)驗(yàn)和案例。阿里圖標(biāo)庫(kù) http://www.iconfont.cn/collections/show/29
在這個(gè)網(wǎng)站上下載一些自己要用到的圖標(biāo),比如人員頭像,home主頁(yè)等一些常用的圖標(biāo),直接點(diǎn)擊下載保存到本地,修改一下命名。也可以使用UI準(zhǔn)備好的圖標(biāo)。
回到項(xiàng)目里,新建一個(gè)images文件夾,將剛剛下載好的圖標(biāo)放在文件夾底下備用,將上述起好名字的圖標(biāo) 保存到 小程序 項(xiàng)目目錄中 新創(chuàng)建的 images 文件夾中,準(zhǔn)備工作就做好了。
我們找到項(xiàng)目根目錄中的配置文件 app.json 加入如下配置信息(app.json文件用來(lái)對(duì)微信小程序進(jìn)行全局配置,決定頁(yè)面文件的路徑、窗口表現(xiàn)、設(shè)置網(wǎng)絡(luò)超時(shí)時(shí)間、設(shè)置多 tab 等。)
"tabBar": { "color": "#a9b7b7", "selectedColor": "#11cd6e", "borderStyle": "white", "list": [ { "selectedIconPath": "images/1.png", "iconPath": "images/2.png", "pagePath": "pages/index/index", "text": "首頁(yè)" }, { "selectedIconPath": "images/1.png", "iconPath": "images/2.png", "pagePath": "pages/logs/logs", "text": "日志" }, { "selectedIconPath": "images/1.png", "iconPath": "images/2.png", "pagePath": "pages/test/test", "text": "測(cè)試" } ] }
以上只是基礎(chǔ)的部分,當(dāng)然了小程序的官方文檔提供了更多的豐富的組件和樣式
OK,結(jié)束,保存 編譯 就可以實(shí)現(xiàn)小程序的經(jīng)典的底部導(dǎo)航效果了
圖片.png
{ "pages":[ "pages/index/index", "pages/category/category", "pages/topic/topic", "pages/user/user", "pages/logs/logs" ], "window":{ "backgroundTextStyle":"light", "navigationBarBackgroundColor": "#000", "navigationBarTitleText": "WeiCMS", "navigationBarTextStyle":"white" }, "tabBar": { "color": "#8c8c8c", "selectedColor": "#f4645f", "backgroundColor": "white", "list": [{ "pagePath": "pages/index/index", "text": "首頁(yè)", "iconPath":"images/48.png", "selectedIconPath":"images/48.png" }, { "pagePath": "pages/category/category", "text": "分類", "iconPath":"images/48.png", "selectedIconPath":"images/48.png" }, { "pagePath": "pages/topic/topic", "text": "話題", "iconPath":"images/48.png", "selectedIconPath":"images/48.png" }, { "pagePath": "pages/user/user", "text": "我的", "iconPath":"images/48.png", "selectedIconPath":"images/48.png" } ], "position": "bottom" } }
關(guān)于“微信小程序中如何實(shí)現(xiàn)底部導(dǎo)航欄”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。