2017-01-09 17:19:26 +08:00
|
|
|
---
|
|
|
|
order: 3
|
|
|
|
title:
|
|
|
|
zh-CN: 自定义面板
|
|
|
|
en-US: Custom Panel
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
2019-01-23 10:41:07 +08:00
|
|
|
自定义各个面板的背景色、圆角、边距和图标。
|
2017-01-09 17:19:26 +08:00
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
2019-01-23 10:41:07 +08:00
|
|
|
Customize the background, border, margin styles and icon for each panel.
|
2017-01-09 17:19:26 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2019-01-23 10:41:07 +08:00
|
|
|
import { Collapse, Icon } from 'antd';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2019-06-19 19:09:08 +08:00
|
|
|
const { Panel } = Collapse;
|
2017-01-09 17:19:26 +08:00
|
|
|
|
|
|
|
const text = `
|
|
|
|
A dog is a type of domesticated animal.
|
|
|
|
Known for its loyalty and faithfulness,
|
|
|
|
it can be found as a welcome guest in many households across the world.
|
|
|
|
`;
|
|
|
|
|
|
|
|
const customPanelStyle = {
|
|
|
|
background: '#f7f7f7',
|
|
|
|
borderRadius: 4,
|
|
|
|
marginBottom: 24,
|
|
|
|
border: 0,
|
2017-09-03 18:24:22 +08:00
|
|
|
overflow: 'hidden',
|
2017-01-09 17:19:26 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
ReactDOM.render(
|
2019-01-23 10:41:07 +08:00
|
|
|
<Collapse
|
|
|
|
bordered={false}
|
|
|
|
defaultActiveKey={['1']}
|
|
|
|
expandIcon={({ isActive }) => <Icon type="caret-right" rotate={isActive ? 90 : 0} />}
|
|
|
|
>
|
2017-01-09 17:19:26 +08:00
|
|
|
<Panel header="This is panel header 1" key="1" style={customPanelStyle}>
|
|
|
|
<p>{text}</p>
|
|
|
|
</Panel>
|
|
|
|
<Panel header="This is panel header 2" key="2" style={customPanelStyle}>
|
|
|
|
<p>{text}</p>
|
|
|
|
</Panel>
|
|
|
|
<Panel header="This is panel header 3" key="3" style={customPanelStyle}>
|
|
|
|
<p>{text}</p>
|
|
|
|
</Panel>
|
2018-06-27 15:55:04 +08:00
|
|
|
</Collapse>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|