ant-design/components/notification/demo/with-icon.md

55 lines
1.7 KiB
Markdown
Raw Normal View History

2015-07-28 15:40:28 +08:00
# 带有Icon的通知提醒框
2015-08-03 15:17:12 +08:00
- order: 2
2015-07-28 15:40:28 +08:00
通知提醒框左侧有Icon图标。
---
````jsx
2015-07-30 21:04:52 +08:00
var notification = require('antd/lib/notification');
2015-07-28 15:40:28 +08:00
2015-08-03 15:17:12 +08:00
var openNotificationSuccess = function() {
2015-07-28 15:40:28 +08:00
var args = {
2015-07-29 20:08:16 +08:00
message: "这是标题",
description: "这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案",
2015-08-03 15:17:12 +08:00
icon: "success"
2015-07-28 15:40:28 +08:00
};
2015-07-31 18:13:32 +08:00
notification.open(args);
2015-07-30 21:04:52 +08:00
};
2015-07-28 15:40:28 +08:00
2015-08-03 15:17:12 +08:00
var openNotificationInfo = function() {
var args = {
message: "这是标题",
description: "这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案",
icon: "info"
};
notification.open(args);
};
var openNotificationWarn = function() {
var args = {
message: "这是标题",
description: "这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案",
icon: "warn"
};
notification.open(args);
};
var openNotificationError = function() {
var args = {
message: "这是标题",
description: "这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案",
icon: "error"
};
notification.open(args);
};
React.render(<div>
<button className="ant-btn ant-btn-primary" onClick={openNotificationSuccess}>Success</button>
<button className="ant-btn ant-btn-primary" onClick={openNotificationInfo}>Info</button>
<button className="ant-btn ant-btn-primary" onClick={openNotificationWarn}>Warn</button>
<button className="ant-btn ant-btn-primary" onClick={openNotificationError}>Error</button>
</div>
2015-07-30 21:04:52 +08:00
, document.getElementById('components-notification-demo-with-icon'));
2015-07-28 15:40:28 +08:00
````