Skip to content
On this page

ek.setNavigationBarColor

支持 Promise

设置当前页面导航栏的颜色。

参数

参数类型默认值必填说明
frontColorstring前景颜色值,包括按钮、标题、状态栏的颜色,仅支持 #ffffff 和 #000000
backgroundColorstring背景颜色,必须是 16 进制格式
animationAnimation动画效果
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

Animation

参数类型默认值必填说明
durationnumber0动画变化时间,单位 ms
timingFuncstringlinear动画类型
合法值说明
linear线性
easeIn缓入
easeOut缓出
easeInOut缓入缓出

Example

ts
ek.setNavigationBarColor({
  frontColor: '#ffffff',
  backgroundColor: '#000000',
  animation: {
    duration: 250,
    timingFunc: 'easeInOut'
  }
})