更新时间:2023-12-18 GMT+08:00
设置导航栏背景和字体颜色
扫码体验:
请求参数
参数 |
类型 |
必填 |
说明 |
---|---|---|---|
frontColor |
string |
是 |
前景颜色值,包括按钮、标题、状态栏的颜色,仅支持 #ffffff 和 #000000 |
backgroundColor |
string |
是 |
背景颜色值,有效值为十六进制颜色 |
返回结果
参数 |
类型 |
说明 |
---|---|---|
status |
number |
1:成功 |
请求示例
- ES6版本
HWH5.setNavigationBarColor({ frontColor: '#ffffff', backgroundColor: '#66ff00' }) .then(data => { console.log(data); }) .catch(error => { console.log(error); });
- ES5版本
HWH5.setNavigationBarColor({ frontColor: '#ffffff', backgroundColor: '#66ff00' }) .then(function (data) { console.log(data); }) .catch(function (error) { console.log(error); });
HWH5.showToast
父主题: 界面