1Introduction
- description:非模态模式提示 UI
- author:ydr.me
- create:2016-04-26 19:20
- update:2017年02月11日11:06:57
- github:https://github.com/blearjs/blear.ui.tips
2Example
var Tips = require('blear.ui.tips');
new Tips({
message: '你的会员权限已到期'
});
- default:
- success:
- danger:
- info:
- warn:
3Static
3.1.defaults
- 类型:
Object
- 说明:默认配置
3.2.defaults.type
- 类型:
String
- 说明:提示类型,可选
default
、success
、danger
、info
、warn
- 默认:
"default"
3.3.defaults.message
- 类型:
String
- 说明:提示消息
- 默认:
""
3.4.defaults.addClass
- 类型:
String
- 说明:附加的 class
- 默认:
""
3.5.defaults.timeout
- 类型:
Number
- 说明:显示超时时间,单位 ms,小于 0 时不自动消失
- 默认:
2345
3.6.defaults.openAnimation
- 类型:
Function
- 说明:打开动画
3.7.defaults.closeAnimation
- 类型:
Function
- 说明:关闭动画
4new Example(options)
实例化一个提示 UI,options
为入参,默认值为 .defaults
。
5Prototype
无。
6Events
无。
7Dependencies
- blear.classes.animation
- blear.classes.template
- blear.core.attribute
- blear.core.event
- blear.ui.window
- blear.utils.object
8Reference
无。