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

36 lines
882 B
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
2015-08-06 15:19:45 +08:00
通知提醒框左侧有图标。
2015-07-28 15:40:28 +08:00
---
````jsx
var notification = antd.Notification;
var Button = antd.Button;
2015-07-28 15:40:28 +08:00
2015-08-04 15:16:10 +08:00
var openNotificationWithIcon = function(type) {
return function(){
2015-08-06 15:19:45 +08:00
notification[type]({
2015-08-04 15:16:10 +08:00
message: "这是标题",
description: "这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案"
2015-08-06 15:19:45 +08:00
});
2015-08-04 15:16:10 +08:00
};
2015-08-03 15:17:12 +08:00
};
React.render(<div>
<Button onClick={openNotificationWithIcon('success')}>成功</Button>
<Button onClick={openNotificationWithIcon('info')}>消息</Button>
<Button onClick={openNotificationWithIcon('warn')}>警告</Button>
<Button onClick={openNotificationWithIcon('error')}>错误</Button>
2015-08-03 15:17:12 +08:00
</div>
2015-07-30 21:04:52 +08:00
, document.getElementById('components-notification-demo-with-icon'));
2015-08-04 15:48:00 +08:00
````
<style>
.code-box-demo .ant-btn {
margin-right: 1em;
}
</style>