参数名 | 类型 | 默认值 | 说明 |
---|---|---|---|
config | object | 必填 | 支持设置文本颜色和大小,背景颜色,是否增加时间信息等,具体见例子。gravity表示对齐方式,默认显示在左上角,支持:left, right, top, bottom, center, center_horizontal, center_vertical。backgroundColor表示背景颜色,支持'#AARRGGBB'、'#RRGGBB'等格式。 |
例子: function main() { Float.config({itemStyle:{color: '#994455', size: 12}, floatStyle:{height:100, width: 100, gravity: 'left|bottom', backgroundColor:'blue'}, addTime: true}); }
参数名 | 类型 | 默认值 | 说明 |
---|---|---|---|
msg | string | 必填 | 显示的文本消息 |
例子: function main() { Float.message('hello'); }
参数名 | 类型 | 默认值 | 说明 |
---|---|---|---|
enable | boolean | 必填 | true或者false |
例子: function main() { Float.enable(false); }
参数名 | 类型 | 默认值 | 说明 |
---|
例子: function main() { Float.clear(); }