uni-app自定义导航栏
1、下载iconfont图标
阿里图标库官网:
- 没有登录注册的需要先登录注册
鼠标悬浮到图标上–>选择添加入库–>添加到项目(没有项目可以新建一个)
下载到本地
可在下载的文件里查看这样的字段\ue616
//带图标
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页",
"navigationBarBackgroundColor": "#2878ff",
"navigationBarTextStyle": "white",
"app-plus":{
"titleNView":{
"colorPressed":"#007AFF",
"buttons":[
{
"text": "\ue616",
"fontSrc": "/static/iconfont/iconfont.ttf",
"fontSize": "22px"
}
]
}
}
}
}
//也可以不使用图标的方式,使用文字的方式
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页",
"app-plus":{
"titleNView":{
"buttons":[
{
"text":"发邮件",
"type":"none",
"fontSize":"14px",
"color":"#A59A9D",
"background":"#ffffff",
"float":"left"
},
{
"text":"收件箱",
"type":"none",
"fontSize":"14px",
"color":"#A59A9D",
"background":"#ffffff
}
]
}
}
}
}