溫馨提示×

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

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

微信小程序中怎么實(shí)現(xiàn)底部導(dǎo)航欄

發(fā)布時(shí)間:2022-04-20 11:04:05 來源:億速云 閱讀:259 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要介紹“微信小程序中怎么實(shí)現(xiàn)底部導(dǎo)航欄”,在日常操作中,相信很多人在微信小程序中怎么實(shí)現(xiàn)底部導(dǎo)航欄問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”微信小程序中怎么實(shí)現(xiàn)底部導(dǎo)航欄”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!

1. 圖標(biāo)準(zhǔn)備

在這個(gè)網(wǎng)站上下載一些自己要用到的圖標(biāo),比如人員頭像,home主頁等一些常用的圖標(biāo),直接點(diǎn)擊下載保存到本地,修改一下命名。也可以使用UI準(zhǔn)備好的圖標(biāo)。

微信小程序中怎么實(shí)現(xiàn)底部導(dǎo)航欄

回到項(xiàng)目里,新建一個(gè)images文件夾,將剛剛下載好的圖標(biāo)放在文件夾底下備用,將上述起好名字的圖標(biāo) 保存到 小程序 項(xiàng)目目錄中 新創(chuàng)建的 images 文件夾中,準(zhǔn)備工作就做好了。

微信小程序中怎么實(shí)現(xiàn)底部導(dǎo)航欄

微信小程序中怎么實(shí)現(xiàn)底部導(dǎo)航欄

2. 添加配置文件

我們找到項(xiàng)目根目錄中的配置文件 app.json 加入如下配置信息(app.json文件用來對(duì)微信小程序進(jìn)行全局配置,決定頁面文件的路徑、窗口表現(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": "首頁"
    },
    {      "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": "測試"
    }
  ]
}

微信小程序中怎么實(shí)現(xiàn)底部導(dǎo)航欄

OK,結(jié)束,保存 編譯  就可以實(shí)現(xiàn)小程序的經(jīng)典的底部導(dǎo)航效果了

微信小程序中怎么實(shí)現(xiàn)底部導(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": "首頁",      "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)航欄”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

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

AI