- 快速上手
-
布局
- 卡片 JRCard
- 容器布局 JRContainer
- 表格 JRTable
-
表单
- 按钮 JRButton
- 复选框 JRCheck
- 复选组 JRCheckGroup
- 日期选择 JRDatePicker
- 表单 JRForm
- 输入框 JRInput
- 多级选择 JRMultiSelect
- 单选组 JRRadioGroup
- 下拉选择 JRSelect
- 开关 JRSwitch
- 展示文本 JRText
- 文本输入 JRTextArea
- 树型视图 JRTreeView
- 上传文件 JRUpload
-
通知
- 遮罩 JRMask
- 模态框 JRModal
- 通知 JRNotify
- 确认提示 JRPopConfirm
-
导航
- 折叠面板 JRCollapse
- 面包屑 JRCrumb
- 两级菜单 JRMenu
- 分页 JRPager
- 菜单栏 JRSidebar
- 步骤 JRSteps
- 选项卡 JRTabs
-
拖拽相关
- 拖出 JRDraggable
- 拖入 JRDroppable
- 移动 JRMovable
- 滑块 JRSlider
-
其它
- 徽标 JRBadge
- 图标 JRIcon
- 图片预览 JRImagePreview
- 加载 JRLoading
- 国际化 JRLocaleProvider
- 进度条 JRProgress
- 文字提示 JRTooltip
创建显示消息的通知,并且能自动淡出。类似Android中的Toast。
代码演示
基本形式
|
|
状态扩展
|
|
位置扩展
|
|
嵌入文档流
上面的模式通知都是以fixed
的形式固定在浏览器中,如果要将通知嵌入到文档流,先将notify
注入到需要的位置,同时设置notify
的position="static"
。
|
|
消息停留时间
可以通过设置notify
的duration
参数设置所有消息的停留时间,也可以在show
的时候单独设置该条消息的停留时间,单位为毫秒。
|
|
始终显示一条
将single
设置为true
,可以让notify
始终只显示一条消息。
|
|
API
Classes
Constants
Functions
- config()
- init()
- duration]) 弹出一个消息([text], [state], [duration]) ⇒
void
- close(message) 关闭某条消息(message) ⇒
void
- closeAll() 关闭所有消息() ⇒
void
- duration]) 弹出特殊类型的消息。为show方法的简写方式。([text], [duration]) ⇒
void
- duration]) 弹出一个消息([text], [state], [duration]) ⇒
void
- duration]) 弹出特殊类型的消息。为show方法的简写方式。([text], [duration]) ⇒
void
Events
JRNotify
Kind: global class
Extend: Component
new JRNotify()
Param | Type | Default | Description |
---|---|---|---|
[options.data] | object |
= 绑定属性 | |
[options.data.position] | string |
"topcenter" |
=> 通知的位置,可选参数:topcenter 、topleft 、topright 、bottomcenter 、bottomleft 、bottomright 、static |
[options.data.duration] | number |
2000 |
=> 每条消息默认的停留毫秒数,如果为0,则表示消息常驻不消失。 |
[options.data.single] | boolean |
false |
=> 是否始终显示一条 |
[options.data.visible] | boolean |
true |
=> 是否显示 |
[options.data.class] | string |
=> 补充class |
Component
JRNotify 通知
Kind: global constant
Author: sensen(rainforest92@126.com)
notify
直接初始化一个实例
Kind: global constant
State: Notify
config()
Kind: global function
Access: protected
init()
Kind: global function
Access: protected
close(message) 关闭某条消息(message) ⇒ void
Kind: global function
Access: public
Param | Type | Description |
---|---|---|
message | object |
需要关闭的消息对象 |
closeAll() 关闭所有消息() ⇒ void
Kind: global function
Access: public
“show 弹出一个消息时触发”
Kind: event emitted
Properties
Name | Type | Description |
---|---|---|
sender | object |
事件发送对象 |
message | object |
弹出的消息对象 |
“close 关闭某条消息时触发”
Kind: event emitted
Properties
Name | Type | Description |
---|---|---|
sender | object |
事件发送对象 |
message | object |
关闭了的消息对象 |
.close(message) 关闭某条消息(message) ⇒ void
Kind: static function
Access: public
Param | Type | Description |
---|---|---|
message | object |
需要关闭的消息对象 |
.closeAll() 关闭所有消息() ⇒ void
Kind: static function
Access: public