当前位置: 首页 > 文档资料 > Rax 中文文档 >

Background

优质
小牛编辑
129浏览
2023-12-01

动态设置窗口的背景等.

支持

安装

$ npm install universal-background --save

方法

setColor(options)

动态设置窗口的背景色。

参数

属性类型默认值必选描述支持
colorStringx窗口的背景色
topColorStringx顶部窗口的背景色,仅 iOS 支持
bottomColorStringx底部窗口的背景色,仅 iOS 支持

setTextStyle(options)

动态设置窗口的背景色。

参数

属性类型默认值必选描述支持
styleString下拉背景字体、loading 图的样式,仅支持 'dark', 'light'。

示例

import Background from 'universal-background';

Background.setColor({
  color: '#000000',
  success: res => {
  },
  fail: res => {
  }
});

Background.setTextStyle({
  style: 'dark', // The text color of the drop-down loading page is dark
  success: res => {
  },
  fail: res => {
  }
});