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

66 lines
1.5 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
use ant design icons 4.0 (#18217) * feat: use @ant-design/icons@4.0 * feat: use createFromIconfontCN to make site works * feat: update doc for Icon * feat: use icon in component Alert * feat: use icon in component Avatar * feat: use icon in component Breadcrumb * feat: use icon in component Button * feat: use icon in component Cascader * feat: use icon in component Collapse * feat: use icon in component Datepicker * feat: use icon in component Dropdown * feat: use icon in component Form * feat: use icon in component Input * feat: use icon in component InputNumber * feat: use icon in component Layout * feat: use icon in component Mention * feat: use icon in component Message * feat: use icon in component Modal * feat: use icon in component Notification * feat: use icon in component PageHeader * feat: use icon in component Pagination * feat: use icon in component Popconfirm * feat: use icon in component Progress * feat: use icon in component Rate * feat: use icon in component Result * feat: use icon in component Select * feat: use icon in component Step * feat: use icon in component Switch * feat: use icon in component Table * feat: use icon in component Tab * feat: use icon in component Tag * feat: handle rest component which using Icon * fix: remove unused vars * feat: use latest alpha ant design icons * fix: failed test in uploadlist.test.js * test: update snapshot for icons * doc: add Icon for site * doc: use @ant-design/icons in site * chore: use latest icons * fix: tslint issue * fix: test cases * fix: types for react * fix: lint rules for import orders * fix: use @ant-design/icons@4.0.0-alpha.5 to avoid insert css in server render * fix: eslint error in demo/**.md * inject antd icons * update snapshot * fix site * doc: update docs * fix: code snippets icon in site * feat: use latest @ant-design/icons * fix: icon props in message
2019-08-13 14:07:17 +08:00
import { Collapse } from 'antd';
import { CaretRightOutlined } from '@ant-design/icons';
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.
`;
ReactDOM.render(
<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>
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
```
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
background: #f7f7f7;
border-radius: 2px;
margin-bottom: 24px;
border: 0px;
overflow: hidden;
}
```
<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>