• Layout布局
    • 设计规则
      • 尺寸
      • 交互
      • 视觉
    • 组件概述
    • 代码演示
    • API
      • Layout
      • Layout.Sider
        • breakpoint width

    Layout布局

    协助进行页面级整体布局。

    设计规则

    尺寸

    一级导航项偏左靠近 logo 放置,辅助菜单偏右放置。

    • 顶部导航(大部分系统):一级导航高度 64px,二级导航 48px

    • 顶部导航(展示类页面):一级导航高度 80px,二级导航 56px

    • 顶部导航高度的范围计算公式为:48+8n

    • 侧边导航宽度的范围计算公式:200+8n

    交互

    • 一级导航和末级的导航需要在可视化的层面被强调出来;

    • 当前项应该在呈现上优先级最高;

    • 当导航收起的时候,当前项的样式自动赋予给它的上一个层级;

    • 左侧导航栏的收放交互同时支持手风琴和全展开的样式,根据业务的要求进行适当的选择。

    视觉

    导航样式上需要根据信息层级合理的选择样式:

    • 大色块强调

    建议用于底色为深色系时,当前页面父级的导航项。

    • 高亮火柴棍

    当导航栏底色为浅色系时使用,可用于当前页面对应导航项,建议尽量在导航路径的最终项使用。

    • 字体高亮变色

    从可视化层面,字体高亮的视觉强化力度低于大色块,通常在当前项的上一级使用。

    • 字体放大

    12px14px 是导航的标准字号,14 号字体用在一、二级导航中。字号可以考虑导航项的等级做相应选择。

    组件概述

    • Layout:布局容器,其下可嵌套 Header Sider Content FooterLayout 本身,可以放在任何父容器中。

    • Header:顶部布局,自带默认样式,其下可嵌套任何元素,只能放在 Layout 中。

    • Sider:侧边栏,自带默认样式及基本功能,其下可嵌套任何元素,只能放在 Layout 中。

    • Content:内容部分,自带默认样式,其下可嵌套任何元素,只能放在 Layout 中。

    • Footer:底部布局,自带默认样式,其下可嵌套任何元素,只能放在 Layout 中。

    注意:采用 flex 布局实现,请注意浏览器兼容性问题。

    代码演示

    Layout 布局 - 图1

    基本结构

    典型的页面布局。

    1. import { Layout } from 'antd';
    2. const { Header, Footer, Sider, Content } = Layout;
    3. ReactDOM.render(
    4. <div>
    5. <Layout>
    6. <Header>Header</Header>
    7. <Content>Content</Content>
    8. <Footer>Footer</Footer>
    9. </Layout>
    10. <Layout>
    11. <Header>Header</Header>
    12. <Layout>
    13. <Sider>Sider</Sider>
    14. <Content>Content</Content>
    15. </Layout>
    16. <Footer>Footer</Footer>
    17. </Layout>
    18. <Layout>
    19. <Header>Header</Header>
    20. <Layout>
    21. <Content>Content</Content>
    22. <Sider>Sider</Sider>
    23. </Layout>
    24. <Footer>Footer</Footer>
    25. </Layout>
    26. <Layout>
    27. <Sider>Sider</Sider>
    28. <Layout>
    29. <Header>Header</Header>
    30. <Content>Content</Content>
    31. <Footer>Footer</Footer>
    32. </Layout>
    33. </Layout>
    34. </div>,
    35. mountNode,
    36. );

    Layout 布局 - 图2

    上中下布局

    最基本的『上-中-下』布局。

    一般主导航放置于页面的顶端,从左自右依次为:logo、一级导航项、辅助菜单(用户、设置、通知等)。通常将内容放在固定尺寸(例如:1200px)内,整个页面排版稳定,不受用户终端显示器影响;上下级的结构符合用户上下浏览的习惯,也是较为经典的网站导航模式。页面上下切分的方式提高了主工作区域的信息展示效率,但在纵向空间上会有一些牺牲。此外,由于导航栏水平空间的限制,不适合那些一级导航项很多的信息结构。

    1. import { Layout, Menu, Breadcrumb } from 'antd';
    2. const { Header, Content, Footer } = Layout;
    3. ReactDOM.render(
    4. <Layout className="layout">
    5. <Header>
    6. <div className="logo" />
    7. <Menu
    8. theme="dark"
    9. mode="horizontal"
    10. defaultSelectedKeys={['2']}
    11. style={{ lineHeight: '64px' }}
    12. >
    13. <Menu.Item key="1">nav 1</Menu.Item>
    14. <Menu.Item key="2">nav 2</Menu.Item>
    15. <Menu.Item key="3">nav 3</Menu.Item>
    16. </Menu>
    17. </Header>
    18. <Content style={{ padding: '0 50px' }}>
    19. <Breadcrumb style={{ margin: '16px 0' }}>
    20. <Breadcrumb.Item>Home</Breadcrumb.Item>
    21. <Breadcrumb.Item>List</Breadcrumb.Item>
    22. <Breadcrumb.Item>App</Breadcrumb.Item>
    23. </Breadcrumb>
    24. <div style={{ background: '#fff', padding: 24, minHeight: 280 }}>Content</div>
    25. </Content>
    26. <Footer style={{ textAlign: 'center' }}>Ant Design ©2018 Created by Ant UED</Footer>
    27. </Layout>,
    28. mountNode,
    29. );
    1. #components-layout-demo-top .logo {
    2. width: 120px;
    3. height: 31px;
    4. background: rgba(255, 255, 255, 0.2);
    5. margin: 16px 24px 16px 0;
    6. float: left;
    7. }

    Layout 布局 - 图3

    顶部-侧边布局-通栏

    同样拥有顶部导航及侧边栏,区别是两边未留边距,多用于应用型的网站。

    1. import { Layout, Menu, Breadcrumb, Icon } from 'antd';
    2. const { SubMenu } = Menu;
    3. const { Header, Content, Sider } = Layout;
    4. ReactDOM.render(
    5. <Layout>
    6. <Header className="header">
    7. <div className="logo" />
    8. <Menu
    9. theme="dark"
    10. mode="horizontal"
    11. defaultSelectedKeys={['2']}
    12. style={{ lineHeight: '64px' }}
    13. >
    14. <Menu.Item key="1">nav 1</Menu.Item>
    15. <Menu.Item key="2">nav 2</Menu.Item>
    16. <Menu.Item key="3">nav 3</Menu.Item>
    17. </Menu>
    18. </Header>
    19. <Layout>
    20. <Sider width={200} style={{ background: '#fff' }}>
    21. <Menu
    22. mode="inline"
    23. defaultSelectedKeys={['1']}
    24. defaultOpenKeys={['sub1']}
    25. style={{ height: '100%', borderRight: 0 }}
    26. >
    27. <SubMenu
    28. key="sub1"
    29. title={
    30. <span>
    31. <Icon type="user" />
    32. subnav 1
    33. </span>
    34. }
    35. >
    36. <Menu.Item key="1">option1</Menu.Item>
    37. <Menu.Item key="2">option2</Menu.Item>
    38. <Menu.Item key="3">option3</Menu.Item>
    39. <Menu.Item key="4">option4</Menu.Item>
    40. </SubMenu>
    41. <SubMenu
    42. key="sub2"
    43. title={
    44. <span>
    45. <Icon type="laptop" />
    46. subnav 2
    47. </span>
    48. }
    49. >
    50. <Menu.Item key="5">option5</Menu.Item>
    51. <Menu.Item key="6">option6</Menu.Item>
    52. <Menu.Item key="7">option7</Menu.Item>
    53. <Menu.Item key="8">option8</Menu.Item>
    54. </SubMenu>
    55. <SubMenu
    56. key="sub3"
    57. title={
    58. <span>
    59. <Icon type="notification" />
    60. subnav 3
    61. </span>
    62. }
    63. >
    64. <Menu.Item key="9">option9</Menu.Item>
    65. <Menu.Item key="10">option10</Menu.Item>
    66. <Menu.Item key="11">option11</Menu.Item>
    67. <Menu.Item key="12">option12</Menu.Item>
    68. </SubMenu>
    69. </Menu>
    70. </Sider>
    71. <Layout style={{ padding: '0 24px 24px' }}>
    72. <Breadcrumb style={{ margin: '16px 0' }}>
    73. <Breadcrumb.Item>Home</Breadcrumb.Item>
    74. <Breadcrumb.Item>List</Breadcrumb.Item>
    75. <Breadcrumb.Item>App</Breadcrumb.Item>
    76. </Breadcrumb>
    77. <Content
    78. style={{
    79. background: '#fff',
    80. padding: 24,
    81. margin: 0,
    82. minHeight: 280,
    83. }}
    84. >
    85. Content
    86. </Content>
    87. </Layout>
    88. </Layout>
    89. </Layout>,
    90. mountNode,
    91. );
    1. #components-layout-demo-top-side-2 .logo {
    2. width: 120px;
    3. height: 31px;
    4. background: rgba(255, 255, 255, 0.2);
    5. margin: 16px 28px 16px 0;
    6. float: left;
    7. }

    Layout 布局 - 图4

    顶部-侧边布局

    拥有顶部导航及侧边栏的页面,多用于展示类网站。

    1. import { Layout, Menu, Breadcrumb, Icon } from 'antd';
    2. const { SubMenu } = Menu;
    3. const { Header, Content, Footer, Sider } = Layout;
    4. ReactDOM.render(
    5. <Layout>
    6. <Header className="header">
    7. <div className="logo" />
    8. <Menu
    9. theme="dark"
    10. mode="horizontal"
    11. defaultSelectedKeys={['2']}
    12. style={{ lineHeight: '64px' }}
    13. >
    14. <Menu.Item key="1">nav 1</Menu.Item>
    15. <Menu.Item key="2">nav 2</Menu.Item>
    16. <Menu.Item key="3">nav 3</Menu.Item>
    17. </Menu>
    18. </Header>
    19. <Content style={{ padding: '0 50px' }}>
    20. <Breadcrumb style={{ margin: '16px 0' }}>
    21. <Breadcrumb.Item>Home</Breadcrumb.Item>
    22. <Breadcrumb.Item>List</Breadcrumb.Item>
    23. <Breadcrumb.Item>App</Breadcrumb.Item>
    24. </Breadcrumb>
    25. <Layout style={{ padding: '24px 0', background: '#fff' }}>
    26. <Sider width={200} style={{ background: '#fff' }}>
    27. <Menu
    28. mode="inline"
    29. defaultSelectedKeys={['1']}
    30. defaultOpenKeys={['sub1']}
    31. style={{ height: '100%' }}
    32. >
    33. <SubMenu
    34. key="sub1"
    35. title={
    36. <span>
    37. <Icon type="user" />
    38. subnav 1
    39. </span>
    40. }
    41. >
    42. <Menu.Item key="1">option1</Menu.Item>
    43. <Menu.Item key="2">option2</Menu.Item>
    44. <Menu.Item key="3">option3</Menu.Item>
    45. <Menu.Item key="4">option4</Menu.Item>
    46. </SubMenu>
    47. <SubMenu
    48. key="sub2"
    49. title={
    50. <span>
    51. <Icon type="laptop" />
    52. subnav 2
    53. </span>
    54. }
    55. >
    56. <Menu.Item key="5">option5</Menu.Item>
    57. <Menu.Item key="6">option6</Menu.Item>
    58. <Menu.Item key="7">option7</Menu.Item>
    59. <Menu.Item key="8">option8</Menu.Item>
    60. </SubMenu>
    61. <SubMenu
    62. key="sub3"
    63. title={
    64. <span>
    65. <Icon type="notification" />
    66. subnav 3
    67. </span>
    68. }
    69. >
    70. <Menu.Item key="9">option9</Menu.Item>
    71. <Menu.Item key="10">option10</Menu.Item>
    72. <Menu.Item key="11">option11</Menu.Item>
    73. <Menu.Item key="12">option12</Menu.Item>
    74. </SubMenu>
    75. </Menu>
    76. </Sider>
    77. <Content style={{ padding: '0 24px', minHeight: 280 }}>Content</Content>
    78. </Layout>
    79. </Content>
    80. <Footer style={{ textAlign: 'center' }}>Ant Design ©2018 Created by Ant UED</Footer>
    81. </Layout>,
    82. mountNode,
    83. );
    1. #components-layout-demo-top-side .logo {
    2. width: 120px;
    3. height: 31px;
    4. background: rgba(255, 255, 255, 0.2);
    5. margin: 16px 28px 16px 0;
    6. float: left;
    7. }

    Layout 布局 - 图5

    侧边布局

    侧边两列式布局。页面横向空间有限时,侧边导航可收起。

    侧边导航在页面布局上采用的是左右的结构,一般主导航放置于页面的左侧固定位置,辅助菜单放置于工作区顶部。内容根据浏览器终端进行自适应,能提高横向空间的使用率,但是整个页面排版不稳定。侧边导航的模式层级扩展性强,一、二、三级导航项目可以更为顺畅且具关联性的被展示,同时侧边导航可以固定,使得用户在操作和浏览中可以快速的定位和切换当前位置,有很高的操作效率。但这类导航横向页面内容的空间会被牺牲一部分。

    1. import { Layout, Menu, Breadcrumb, Icon } from 'antd';
    2. const { Header, Content, Footer, Sider } = Layout;
    3. const SubMenu = Menu.SubMenu;
    4. class SiderDemo extends React.Component {
    5. state = {
    6. collapsed: false,
    7. };
    8. onCollapse = collapsed => {
    9. console.log(collapsed);
    10. this.setState({ collapsed });
    11. };
    12. render() {
    13. return (
    14. <Layout style={{ minHeight: '100vh' }}>
    15. <Sider collapsible collapsed={this.state.collapsed} onCollapse={this.onCollapse}>
    16. <div className="logo" />
    17. <Menu theme="dark" defaultSelectedKeys={['1']} mode="inline">
    18. <Menu.Item key="1">
    19. <Icon type="pie-chart" />
    20. <span>Option 1</span>
    21. </Menu.Item>
    22. <Menu.Item key="2">
    23. <Icon type="desktop" />
    24. <span>Option 2</span>
    25. </Menu.Item>
    26. <SubMenu
    27. key="sub1"
    28. title={
    29. <span>
    30. <Icon type="user" />
    31. <span>User</span>
    32. </span>
    33. }
    34. >
    35. <Menu.Item key="3">Tom</Menu.Item>
    36. <Menu.Item key="4">Bill</Menu.Item>
    37. <Menu.Item key="5">Alex</Menu.Item>
    38. </SubMenu>
    39. <SubMenu
    40. key="sub2"
    41. title={
    42. <span>
    43. <Icon type="team" />
    44. <span>Team</span>
    45. </span>
    46. }
    47. >
    48. <Menu.Item key="6">Team 1</Menu.Item>
    49. <Menu.Item key="8">Team 2</Menu.Item>
    50. </SubMenu>
    51. <Menu.Item key="9">
    52. <Icon type="file" />
    53. <span>File</span>
    54. </Menu.Item>
    55. </Menu>
    56. </Sider>
    57. <Layout>
    58. <Header style={{ background: '#fff', padding: 0 }} />
    59. <Content style={{ margin: '0 16px' }}>
    60. <Breadcrumb style={{ margin: '16px 0' }}>
    61. <Breadcrumb.Item>User</Breadcrumb.Item>
    62. <Breadcrumb.Item>Bill</Breadcrumb.Item>
    63. </Breadcrumb>
    64. <div style={{ padding: 24, background: '#fff', minHeight: 360 }}>Bill is a cat.</div>
    65. </Content>
    66. <Footer style={{ textAlign: 'center' }}>Ant Design ©2018 Created by Ant UED</Footer>
    67. </Layout>
    68. </Layout>
    69. );
    70. }
    71. }
    72. ReactDOM.render(<SiderDemo />, mountNode);
    1. #components-layout-demo-side .logo {
    2. height: 32px;
    3. background: rgba(255, 255, 255, 0.2);
    4. margin: 16px;
    5. }

    Layout 布局 - 图6

    自定义触发器

    要使用自定义触发器,可以设置 trigger={null} 来隐藏默认设定。

    1. import { Layout, Menu, Icon } from 'antd';
    2. const { Header, Sider, Content } = Layout;
    3. class SiderDemo extends React.Component {
    4. state = {
    5. collapsed: false,
    6. };
    7. toggle = () => {
    8. this.setState({
    9. collapsed: !this.state.collapsed,
    10. });
    11. };
    12. render() {
    13. return (
    14. <Layout>
    15. <Sider trigger={null} collapsible collapsed={this.state.collapsed}>
    16. <div className="logo" />
    17. <Menu theme="dark" mode="inline" defaultSelectedKeys={['1']}>
    18. <Menu.Item key="1">
    19. <Icon type="user" />
    20. <span>nav 1</span>
    21. </Menu.Item>
    22. <Menu.Item key="2">
    23. <Icon type="video-camera" />
    24. <span>nav 2</span>
    25. </Menu.Item>
    26. <Menu.Item key="3">
    27. <Icon type="upload" />
    28. <span>nav 3</span>
    29. </Menu.Item>
    30. </Menu>
    31. </Sider>
    32. <Layout>
    33. <Header style={{ background: '#fff', padding: 0 }}>
    34. <Icon
    35. className="trigger"
    36. type={this.state.collapsed ? 'menu-unfold' : 'menu-fold'}
    37. onClick={this.toggle}
    38. />
    39. </Header>
    40. <Content
    41. style={{
    42. margin: '24px 16px',
    43. padding: 24,
    44. background: '#fff',
    45. minHeight: 280,
    46. }}
    47. >
    48. Content
    49. </Content>
    50. </Layout>
    51. </Layout>
    52. );
    53. }
    54. }
    55. ReactDOM.render(<SiderDemo />, mountNode);
    1. #components-layout-demo-custom-trigger .trigger {
    2. font-size: 18px;
    3. line-height: 64px;
    4. padding: 0 24px;
    5. cursor: pointer;
    6. transition: color 0.3s;
    7. }
    8. #components-layout-demo-custom-trigger .trigger:hover {
    9. color: #1890ff;
    10. }
    11. #components-layout-demo-custom-trigger .logo {
    12. height: 32px;
    13. background: rgba(255, 255, 255, 0.2);
    14. margin: 16px;
    15. }

    Layout 布局 - 图7

    响应式布局

    Layout.Sider 支持响应式布局。

    说明:配置 breakpoint 属性即生效,视窗宽度小于 breakpoint 时 Sider 缩小为 collapsedWidth 宽度,若将 collapsedWidth 设置为零,会出现特殊 trigger。

    1. import { Layout, Menu, Icon } from 'antd';
    2. const { Header, Content, Footer, Sider } = Layout;
    3. ReactDOM.render(
    4. <Layout>
    5. <Sider
    6. breakpoint="lg"
    7. collapsedWidth="0"
    8. onBreakpoint={broken => {
    9. console.log(broken);
    10. }}
    11. onCollapse={(collapsed, type) => {
    12. console.log(collapsed, type);
    13. }}
    14. >
    15. <div className="logo" />
    16. <Menu theme="dark" mode="inline" defaultSelectedKeys={['4']}>
    17. <Menu.Item key="1">
    18. <Icon type="user" />
    19. <span className="nav-text">nav 1</span>
    20. </Menu.Item>
    21. <Menu.Item key="2">
    22. <Icon type="video-camera" />
    23. <span className="nav-text">nav 2</span>
    24. </Menu.Item>
    25. <Menu.Item key="3">
    26. <Icon type="upload" />
    27. <span className="nav-text">nav 3</span>
    28. </Menu.Item>
    29. <Menu.Item key="4">
    30. <Icon type="user" />
    31. <span className="nav-text">nav 4</span>
    32. </Menu.Item>
    33. </Menu>
    34. </Sider>
    35. <Layout>
    36. <Header style={{ background: '#fff', padding: 0 }} />
    37. <Content style={{ margin: '24px 16px 0' }}>
    38. <div style={{ padding: 24, background: '#fff', minHeight: 360 }}>content</div>
    39. </Content>
    40. <Footer style={{ textAlign: 'center' }}>Ant Design ©2018 Created by Ant UED</Footer>
    41. </Layout>
    42. </Layout>,
    43. mountNode,
    44. );
    1. #components-layout-demo-responsive .logo {
    2. height: 32px;
    3. background: rgba(255, 255, 255, 0.2);
    4. margin: 16px;
    5. }

    Layout 布局 - 图8

    固定头部

    一般用于固定顶部导航,方便页面切换。

    1. import { Layout, Menu, Breadcrumb } from 'antd';
    2. const { Header, Content, Footer } = Layout;
    3. ReactDOM.render(
    4. <Layout>
    5. <Header style={{ position: 'fixed', zIndex: 1, width: '100%' }}>
    6. <div className="logo" />
    7. <Menu
    8. theme="dark"
    9. mode="horizontal"
    10. defaultSelectedKeys={['2']}
    11. style={{ lineHeight: '64px' }}
    12. >
    13. <Menu.Item key="1">nav 1</Menu.Item>
    14. <Menu.Item key="2">nav 2</Menu.Item>
    15. <Menu.Item key="3">nav 3</Menu.Item>
    16. </Menu>
    17. </Header>
    18. <Content style={{ padding: '0 50px', marginTop: 64 }}>
    19. <Breadcrumb style={{ margin: '16px 0' }}>
    20. <Breadcrumb.Item>Home</Breadcrumb.Item>
    21. <Breadcrumb.Item>List</Breadcrumb.Item>
    22. <Breadcrumb.Item>App</Breadcrumb.Item>
    23. </Breadcrumb>
    24. <div style={{ background: '#fff', padding: 24, minHeight: 380 }}>Content</div>
    25. </Content>
    26. <Footer style={{ textAlign: 'center' }}>Ant Design ©2018 Created by Ant UED</Footer>
    27. </Layout>,
    28. mountNode,
    29. );
    1. #components-layout-demo-fixed .logo {
    2. width: 120px;
    3. height: 31px;
    4. background: rgba(255, 255, 255, 0.2);
    5. margin: 16px 24px 16px 0;
    6. float: left;
    7. }

    Layout 布局 - 图9

    固定侧边栏

    当内容较长时,使用固定侧边栏可以提供更好的体验。

    1. import { Layout, Menu, Icon } from 'antd';
    2. const { Header, Content, Footer, Sider } = Layout;
    3. ReactDOM.render(
    4. <Layout>
    5. <Sider
    6. style={{
    7. overflow: 'auto',
    8. height: '100vh',
    9. position: 'fixed',
    10. left: 0,
    11. }}
    12. >
    13. <div className="logo" />
    14. <Menu theme="dark" mode="inline" defaultSelectedKeys={['4']}>
    15. <Menu.Item key="1">
    16. <Icon type="user" />
    17. <span className="nav-text">nav 1</span>
    18. </Menu.Item>
    19. <Menu.Item key="2">
    20. <Icon type="video-camera" />
    21. <span className="nav-text">nav 2</span>
    22. </Menu.Item>
    23. <Menu.Item key="3">
    24. <Icon type="upload" />
    25. <span className="nav-text">nav 3</span>
    26. </Menu.Item>
    27. <Menu.Item key="4">
    28. <Icon type="bar-chart" />
    29. <span className="nav-text">nav 4</span>
    30. </Menu.Item>
    31. <Menu.Item key="5">
    32. <Icon type="cloud-o" />
    33. <span className="nav-text">nav 5</span>
    34. </Menu.Item>
    35. <Menu.Item key="6">
    36. <Icon type="appstore-o" />
    37. <span className="nav-text">nav 6</span>
    38. </Menu.Item>
    39. <Menu.Item key="7">
    40. <Icon type="team" />
    41. <span className="nav-text">nav 7</span>
    42. </Menu.Item>
    43. <Menu.Item key="8">
    44. <Icon type="shop" />
    45. <span className="nav-text">nav 8</span>
    46. </Menu.Item>
    47. </Menu>
    48. </Sider>
    49. <Layout style={{ marginLeft: 200 }}>
    50. <Header style={{ background: '#fff', padding: 0 }} />
    51. <Content style={{ margin: '24px 16px 0', overflow: 'initial' }}>
    52. <div style={{ padding: 24, background: '#fff', textAlign: 'center' }}>
    53. ...
    54. <br />
    55. Really
    56. <br />
    57. ...
    58. <br />
    59. ...
    60. <br />
    61. ...
    62. <br />
    63. long
    64. <br />
    65. ...
    66. <br />
    67. ...
    68. <br />
    69. ...
    70. <br />
    71. ...
    72. <br />
    73. ...
    74. <br />
    75. ...
    76. <br />
    77. ...
    78. <br />
    79. ...
    80. <br />
    81. ...
    82. <br />
    83. ...
    84. <br />
    85. ...
    86. <br />
    87. ...
    88. <br />
    89. ...
    90. <br />
    91. ...
    92. <br />
    93. ...
    94. <br />
    95. ...
    96. <br />
    97. ...
    98. <br />
    99. ...
    100. <br />
    101. ...
    102. <br />
    103. ...
    104. <br />
    105. ...
    106. <br />
    107. ...
    108. <br />
    109. ...
    110. <br />
    111. ...
    112. <br />
    113. ...
    114. <br />
    115. ...
    116. <br />
    117. ...
    118. <br />
    119. ...
    120. <br />
    121. ...
    122. <br />
    123. ...
    124. <br />
    125. ...
    126. <br />
    127. ...
    128. <br />
    129. ...
    130. <br />
    131. ...
    132. <br />
    133. ...
    134. <br />
    135. ...
    136. <br />
    137. ...
    138. <br />
    139. ...
    140. <br />
    141. ...
    142. <br />
    143. ...
    144. <br />
    145. ...
    146. <br />
    147. content
    148. </div>
    149. </Content>
    150. <Footer style={{ textAlign: 'center' }}>Ant Design ©2018 Created by Ant UED</Footer>
    151. </Layout>
    152. </Layout>,
    153. mountNode,
    154. );
    1. #components-layout-demo-fixed-sider .logo {
    2. height: 32px;
    3. background: rgba(255, 255, 255, 0.2);
    4. margin: 16px;
    5. }

    API

    1. <Layout>
    2. <Header>header</Header>
    3. <Layout>
    4. <Sider>left sidebar</Sider>
    5. <Content>main content</Content>
    6. <Sider>right sidebar</Sider>
    7. </Layout>
    8. <Footer>footer</Footer>
    9. </Layout>

    Layout

    布局容器。

    参数说明类型默认值
    className容器 classNamestring-
    hasSider表示子元素里有 Sider,一般不用指定。可用于服务端渲染时避免样式闪动boolean-
    style指定样式object-

    Layout.Header Layout.Footer Layout.Content API 与 Layout 相同

    Layout.Sider

    侧边栏。

    参数说明类型默认值
    breakpoint触发响应式布局的断点Enum { 'xs', 'sm', 'md', 'lg', 'xl', 'xxl' }-
    className容器 classNamestring-
    collapsed当前收起状态boolean-
    collapsedWidth收缩宽度,设置为 0 会出现特殊 triggernumber80
    collapsible是否可收起booleanfalse
    defaultCollapsed是否默认收起booleanfalse
    reverseArrow翻转折叠提示箭头的方向,当 Sider 在右边时可以使用booleanfalse
    style指定样式object-
    theme主题颜色string: light darkdark
    trigger自定义 trigger,设置为 null 时隐藏 triggerstring|ReactNode-
    width宽度number|string200
    onCollapse展开-收起时的回调函数,有点击 trigger 以及响应式反馈两种方式可以触发(collapsed, type) => {}-
    onBreakpoint触发响应式布局断点时的回调(broken) => {}-

    breakpoint width

    1. {
    2. xs: '480px',
    3. sm: '576px',
    4. md: '768px',
    5. lg: '992px',
    6. xl: '1200px',
    7. xxl: '1600px',
    8. }