You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
711 B
24 lines
711 B
9 years ago
|
# 距离顶部距离
|
||
|
|
||
|
- order: 1
|
||
|
|
||
|
自定义通知框距离顶部的距离, **只在初始化时设置有效** ,默认距离顶部`24px`。
|
||
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
|
var notification = require('antd/lib/notification');
|
||
|
|
||
|
var openNotification = function() {
|
||
|
var args = {
|
||
|
message: "这是标题",
|
||
|
description: "这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案",
|
||
|
top: 100
|
||
|
};
|
||
|
notification.open(args);
|
||
|
};
|
||
|
|
||
|
React.render(
|
||
|
<button className='ant-btn ant-btn-primary' onClick={openNotification}>距离顶部100px</button>
|
||
|
, document.getElementById('components-notification-demo-top'));
|
||
|
````
|