我正在尝试弄清楚如何更改BusyIndicator
. 请参见下面的代码片段和解释:
app.busyIndicator = new WL.BusyIndicator('content', { text: message, bounceAnimation: false, fullScreen: true, minDuration: 3, textColor: "white", opacity: 1, strokeOpacity: 0.25 });
此代码段将强制忙碌指示器在调用时占据 iPhone 移动设备的整个窗口。此行为在 Android 设备上有所不同。
以下是我的问题:
- 在设备内部,如何将背景颜色从纯黑色更改为另一种颜色或透明?
- 我已经覆盖了与
BusyIndicator
布局相关的 CSS 类......在浏览器中测试时确实有效。但是,当应用程序被推送到设备时,我仍然只看到黑色背景。为什么会这样?