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

47 lines
1022 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
title:
zh-CN: 自定义按钮
en-US: Custom close button
2016-03-31 09:40:55 +08:00
---
2015-07-28 15:40:28 +08:00
2016-08-17 11:07:02 +08:00
## zh-CN
2015-07-29 20:08:16 +08:00
自定义关闭按钮的样式和文字。
2015-07-28 15:40:28 +08:00
2016-08-17 11:07:02 +08:00
## en-US
To customize the style or font of the close button.
2017-02-13 10:55:53 +08:00
````jsx
import { Button, notification } from 'antd';
2015-07-28 15:40:28 +08:00
2016-12-14 17:57:15 +08:00
const close = () => {
2016-08-17 11:07:02 +08:00
console.log('Notification was closed. Either the close button was clicked or duration time elapsed.');
};
2015-08-06 20:55:30 +08:00
2016-12-14 17:57:15 +08:00
const openNotification = () => {
const key = `open${Date.now()}`;
const btnClick = function () {
2016-08-17 11:07:02 +08:00
// to hide notification box
2015-08-18 00:57:02 +08:00
notification.close(key);
};
const btn = (
<Button type="primary" size="small" onClick={btnClick}>
Confirm
</Button>
);
2015-08-06 15:19:45 +08:00
notification.open({
message: 'Notification Title',
description: 'A function will be be called after the notification is closed (automatically after the "duration" time of manually).',
btn,
key,
2016-05-11 09:32:33 +08:00
onClose: close,
2015-08-06 15:19:45 +08:00
});
2015-07-30 21:04:52 +08:00
};
2015-07-28 15:40:28 +08:00
2015-10-20 16:47:55 +08:00
ReactDOM.render(
2016-12-14 17:57:15 +08:00
<Button type="primary" onClick={openNotification}>Open the notification box</Button>
, mountNode);
2015-08-06 15:19:45 +08:00
````