mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 09:49:57 +08:00
a74fdbc911
* refactor: add basic cssinjs strcture * refactor: add more refactor style * style: modify more style * style: keep the code style consistent
95 lines
2.4 KiB
Markdown
95 lines
2.4 KiB
Markdown
---
|
|
order: 2
|
|
title:
|
|
zh-CN: 顶部-侧边布局
|
|
en-US: Header-Sider
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
拥有顶部导航及侧边栏的页面,多用于展示类网站。
|
|
|
|
## en-US
|
|
|
|
Both the top navigation and the sidebar, commonly used in documentation site.
|
|
|
|
```tsx
|
|
import { Layout, Menu, Breadcrumb, MenuProps } from 'antd';
|
|
import { UserOutlined, LaptopOutlined, NotificationOutlined } from '@ant-design/icons';
|
|
|
|
const { Header, Content, Footer, Sider } = Layout;
|
|
|
|
const items1: MenuProps['items'] = ['1', '2', '3'].map(key => ({
|
|
key,
|
|
label: `nav ${key}`,
|
|
}));
|
|
|
|
const items2: MenuProps['items'] = [UserOutlined, LaptopOutlined, NotificationOutlined].map(
|
|
(icon, index) => {
|
|
const key = String(index + 1);
|
|
|
|
return {
|
|
key: `sub${key}`,
|
|
icon: React.createElement(icon),
|
|
label: `subnav ${key}`,
|
|
|
|
children: new Array(4).fill(null).map((_, j) => {
|
|
const subKey = index * 4 + j + 1;
|
|
return {
|
|
key: subKey,
|
|
label: `option${subKey}`,
|
|
};
|
|
}),
|
|
};
|
|
},
|
|
);
|
|
|
|
export default () => (
|
|
<Layout>
|
|
<Header className="header">
|
|
<div className="logo" />
|
|
<Menu theme="dark" mode="horizontal" defaultSelectedKeys={['2']} items={items1} />
|
|
</Header>
|
|
<Content style={{ padding: '0 50px' }}>
|
|
<Breadcrumb style={{ margin: '16px 0' }}>
|
|
<Breadcrumb.Item>Home</Breadcrumb.Item>
|
|
<Breadcrumb.Item>List</Breadcrumb.Item>
|
|
<Breadcrumb.Item>App</Breadcrumb.Item>
|
|
</Breadcrumb>
|
|
<Layout className="site-layout-background" style={{ padding: '24px 0' }}>
|
|
<Sider className="site-layout-background" width={200}>
|
|
<Menu
|
|
mode="inline"
|
|
defaultSelectedKeys={['1']}
|
|
defaultOpenKeys={['sub1']}
|
|
style={{ height: '100%' }}
|
|
items={items2}
|
|
/>
|
|
</Sider>
|
|
<Content style={{ padding: '0 24px', minHeight: 280 }}>Content</Content>
|
|
</Layout>
|
|
</Content>
|
|
<Footer style={{ textAlign: 'center' }}>Ant Design ©2018 Created by Ant UED</Footer>
|
|
</Layout>
|
|
);
|
|
```
|
|
|
|
```css
|
|
#components-layout-demo-top-side .logo {
|
|
float: left;
|
|
width: 120px;
|
|
height: 31px;
|
|
margin: 16px 24px 16px 0;
|
|
background: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.ant-row-rtl #components-layout-demo-top-side .logo {
|
|
float: right;
|
|
margin: 16px 0 16px 24px;
|
|
}
|
|
|
|
#components-layout-demo-top-side .site-layout-background {
|
|
background: #fff;
|
|
}
|
|
```
|