ant-design/components/collapse/demo/custom.md

54 lines
1.1 KiB
Markdown
Raw Normal View History

---
order: 3
title:
zh-CN: 自定义面板
en-US: Custom Panel
---
## zh-CN
自定义各个面板的背景色、圆角、边距和图标。
## en-US
Customize the background, border, margin styles and icon for each panel.
2019-05-07 14:57:32 +08:00
```jsx
import { Collapse, Icon } from 'antd';
2018-06-27 15:55:04 +08:00
2019-06-19 19:09:08 +08:00
const { Panel } = Collapse;
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',
};
ReactDOM.render(
<Collapse
bordered={false}
defaultActiveKey={['1']}
expandIcon={({ isActive }) => <Icon type="caret-right" rotate={isActive ? 90 : 0} />}
>
<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
```