ek.setNavigationBarColor #
支持 Promise
设置当前页面导航栏的颜色。
参数 #
参数 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
frontColor | string | 是 | 前景颜色值,包括按钮、标题、状态栏的颜色,仅支持 #ffffff 和 #000000 | |
backgroundColor | string | 是 | 背景颜色,必须是 16 进制格式 | |
animation | Animation | 否 | 动画效果 | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
Animation #
参数 | 类型 | 默认值 | 必填 | 说明 | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
duration | number | 0 | 否 | 动画变化时间,单位 ms | |||||||||||
timingFunc | string | linear | 否 | 动画类型 | |||||||||||
|
Example #
ts
ek.setNavigationBarColor({
frontColor: '#ffffff',
backgroundColor: '#000000',
animation: {
duration: 250,
timingFunc: 'easeInOut'
}
})