溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

微信小程序開發(fā)之tabbar圖標(biāo)和顏色的實現(xiàn)

發(fā)布時間:2020-09-06 18:36:15 來源:腳本之家 閱讀:312 作者:國蘇 欄目:web開發(fā)

前期準(zhǔn)備 :注冊,填材料,驗證等等:https://mp.weixin.qq.com

1.瀏覽一遍簡易教程,下載相應(yīng)的開發(fā)工具

寫一個小例子

點擊左側(cè)的 “編輯”-》點擊右側(cè)代碼里的 app.json 修改為

{
 "pages":[
  "pages/fightings/home", 
  "pages/publish/home", 
  "pages/mine/home"
 ],
 "tabBar": {
  "list": [
   {
    "pagePath": "pages/fightings/home",
    "text": "挑戰(zhàn)"
   },
   {
    "pagePath": "pages/publish/home",
    "text": "發(fā)布"
   },
   {
    "pagePath": "pages/mine/home",
    "text": "我"
   }
  ]
 },
 "window":{
  "backgroundTextStyle":"light",
  "navigationBarBackgroundColor": "#fff",
  "navigationBarTitleText": "i挑戰(zhàn)",
  "navigationBarTextStyle":"black"
 }
}

說明

  • pages就是我們有多少個頁面
  • tabbar是頁面底部的tab
  • window是頁面的一些屬性

微信小程序開發(fā)之tabbar圖標(biāo)和顏色的實現(xiàn)

這個樣子太丑了 我們先來美化一下這個tab

{
 "pages":[
  "pages/home/home",  
  "pages/fightings/home", 
  "pages/mine/home"
 ],
 "tabBar": {
  "color":"#666666",
  "selectedColor":"#f10b2e",

  "list": [
   {
    "pagePath": "pages/home/home",
    "text": "大廳",
    "iconPath": "./res/icon_tab_home.png",
    "selectedIconPath": "./res/icon_tab_home_hl.png"
    },
    {
    "pagePath": "pages/fightings/home",
    "text": "挑戰(zhàn)",
    "iconPath":"./res/icon_tab_fighting.png",
    "selectedIconPath":"./res/icon_tab_fighting_hl.png"
   },

   {
    "pagePath": "pages/mine/home",
    "text": "我",
    "iconPath": "./res/icon_tab_me.png",
    "selectedIconPath": "./res/icon_tab_me_hl.png"
   }
  ]
 },
 "window":{
  "backgroundTextStyle":"light",
  "navigationBarBackgroundColor": "#fff",
  "navigationBarTitleText": "i挑戰(zhàn)",
  "navigationBarTextStyle":"black"
 }
}

說明

字段都比較簡單就不詳細說了 其中 “iconPath”: “./res/icon_tab_me.png”是圖片的路徑

自己在項目里創(chuàng)建一個res文件夾,然后放入需要的圖片

tab 好看一點了吧

微信小程序開發(fā)之tabbar圖標(biāo)和顏色的實現(xiàn)

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI