ant-design/components/page-header/demo/content.md
陈帅 dee8f93fe7
New Component PageHeader (#13637)
* add api dock

* add a simple demo

* add content demos

* fix style warning

* Replace content with children

* add all demo

* add demo test

* add backNode props

* Adjust the divider style

* fix icon do no show

* fix test ci

* fix md code style

* remove fragment use

* add test script

* Missing newline character at end of file

* optimize the demo display

* text becomes longer

* text becomes longer

* fix css code style

* fix test snapshot

* fix css code style

* fix codereivew waring

* fix codereivew waring

* update snapshots

* use ant-page-header-have-footer

* use englist

* fix typo

* updated snapshot

* line-height set to 100%

* remove subtitle

* Specification less

* fix less style error

* Sort by alphabet

* Rebuild code

* use english

* number use Statistic

* snapshot updated

* rm onBack in breadcrumb

* remove unuse return

* add a click wave

* remove unuse css

* add icon hover

* newline character

* new description

* warm descriptive text

* add dot

* remove async

* feat: use Typography.Paragraph

* test: snapshots updated

* style: fix  style lint

* import typography style
2019-03-02 15:51:08 +08:00

116 lines
2.5 KiB
Markdown

---
order: 3
title:
zh-CN: 带内容的例子
en-US: Example with content
---
## zh-CN
带内容的例子,可以优先展示页面的主要信息。
## en-US
An example with content that gives priority to the main information of the page.
```jsx
import { PageHeader,Typography } from 'antd';
const { Paragraph } = Typography;
const routes = [
{
path: 'index',
breadcrumbName: 'First-level Menu',
},
{
path: 'first',
breadcrumbName: 'Second-level Menu',
},
{
path: 'second',
breadcrumbName: 'Third-level Menu',
},
];
const content = (
<div className="content">
<Paragraph>
Ant Design interprets the color system into two levels: a system-level
color system and a product-level color system.
</Paragraph>
<Paragraph>
Ant Design&#x27;s design team preferred to design with the HSB color model,
which makes it easier for designers to have a clear psychological
expectation of color when adjusting colors, as well as facilitate
communication in teams.
</Paragraph>
<p className="contentLink">
<a>
<img
src="https://gw.alipayobjects.com/zos/rmsportal/MjEImQtenlyueSmVEfUD.svg"
alt="start"
/>
Quick Start
</a>
<a>
<img
src="https://gw.alipayobjects.com/zos/rmsportal/NbuDUAuBlIApFuDvWiND.svg"
alt="info"
/>
Product Info
</a>
<a>
<img
src="https://gw.alipayobjects.com/zos/rmsportal/ohOEPSYdDTNnyMbGuyLb.svg"
alt="doc"
/>
Product Doc
</a>
</p>
</div>
);
const extraContent = (
<img
src="https://gw.alipayobjects.com/mdn/mpaas_user/afts/img/A*KsfVQbuLRlYAAAAAAAAAAABjAQAAAQ/original"
alt="content"
/>
);
ReactDOM.render(
<PageHeader title="Title" breadcrumb={{ routes }}>
<div className="wrap">
<div className="content">{content}</div>
<div className="extraContent">{extraContent}</div>
</div>
</PageHeader>,
mountNode,
);
```
<style>
#components-page-header-demo-content .wrap {
display: flex;
}
#components-page-header-demo-content .content {
flex: 1;
}
#components-page-header-demo-content .extraContent {
min-width: 240px;
text-align: right;
}
#components-page-header-demo-content .contentLink {
padding-top: 16px;
}
#components-page-header-demo-content .contentLink a {
display: inline-block;
vertical-align: text-top;
margin-right: 32px;
}
#components-page-header-demo-content .contentLink a img {
margin-right: 8px;
}
</style>