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

68 lines
1.6 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.
```tsx
import { CaretRightOutlined } from '@ant-design/icons';
2022-05-23 14:37:16 +08:00
import { Collapse } from 'antd';
import React from 'react';
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 App: React.FC = () => (
<Collapse
bordered={false}
defaultActiveKey={['1']}
expandIcon={({ isActive }) => <CaretRightOutlined rotate={isActive ? 90 : 0} />}
2019-12-25 20:58:24 +08:00
className="site-collapse-custom-collapse"
>
2019-12-25 11:02:45 +08:00
<Panel header="This is panel header 1" key="1" className="site-collapse-custom-panel">
<p>{text}</p>
</Panel>
2019-12-25 11:02:45 +08:00
<Panel header="This is panel header 2" key="2" className="site-collapse-custom-panel">
<p>{text}</p>
</Panel>
2019-12-25 11:02:45 +08:00
<Panel header="This is panel header 3" key="3" className="site-collapse-custom-panel">
<p>{text}</p>
</Panel>
</Collapse>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```
2019-12-25 11:02:45 +08:00
```css
[data-theme='compact'] .site-collapse-custom-collapse .site-collapse-custom-panel,
2019-12-25 20:58:24 +08:00
.site-collapse-custom-collapse .site-collapse-custom-panel {
2019-12-25 11:02:45 +08:00
margin-bottom: 24px;
overflow: hidden;
background: #f7f7f7;
border: 0px;
border-radius: 2px;
2019-12-25 11:02:45 +08:00
}
```
<style>
2019-12-25 20:58:24 +08:00
[data-theme="dark"] .site-collapse-custom-collapse .site-collapse-custom-panel {
2019-12-25 11:02:45 +08:00
background: rgba(255,255,255,0.04);
2019-12-25 20:58:24 +08:00
border: 0px;
2019-12-25 11:02:45 +08:00
}
</style>