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

36 lines
811 B
Markdown
Raw Normal View History

2015-07-28 15:40:28 +08:00
# 带有Icon的通知提醒框
- order: 1
通知提醒框左侧有Icon图标。
---
````jsx
var Notification = require('antd/lib/notification');
if(!Notification.notification){
Notification.notification = Notification.newInstance({
prefixCls: 'ant-notification',
style: {
top: 0,
right: 0
}
});
}
2015-07-29 20:08:16 +08:00
var openNotification = function() {
2015-07-28 15:40:28 +08:00
var args = {
2015-07-29 20:08:16 +08:00
message: "这是标题",
description: "这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案",
2015-07-28 15:40:28 +08:00
icon: true
};
Notification.show(args);
}
React.render(
<div>
2015-07-29 20:08:16 +08:00
<button className="ant-btn ant-btn-primary" onClick={openNotification}>带有Icon的通知提醒框</button>
</div>,
document.getElementById('components-notification-demo-with-icon'));
2015-07-28 15:40:28 +08:00
````