如下设置,buttons
中color
是页面上推后的文字颜色,background
是页面未上推之前的背景色,那在页面未上推之前文字颜色怎么设置?现在全是白色。
{
"pages": [{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "autoTitle", //通用titlt文字
"navigationBarTextStyle": "black",
"app-plus": {
"navigationBarTitleText": "AppTitle1", //APP下的Title
"titleNView": {
"type": "transparent", //滚动透明渐变
"backgroundColor": "#abcdef", //页面上推时标题栏背景色
"titleColor": "#ff00ff", //页面上推时标题及按钮颜色
"buttons": [{
"float": "left",
"background": "#00f", //未上推时按钮背景色
"color": "#ffff00", //页面上推时按钮字体色
"fontSize": "14px",
"text": "取消",
"width": "60px"
},
{
"background": "#f00",
"float": "right",
"color": "#5555ff",
"text": "发表",
"fontSize": "14px",
"width": "60px"
}
],
"autoBackButton": false //取消返回按钮,由buttons中实现
}
}
}
}],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
}
}
0 个回复