Grid栅格 - 图1

Grid 栅格

24 栅格系统。

设计理念

在多数业务情况下,Ant Design Vue 需要在设计区域内解决大量信息收纳的问题,因此在 12 栅格系统的基础上,我们将整个设计建议区域按照 24 等分的原则进行划分。 划分之后的信息区块我们称之为『盒子』。建议横向排列的盒子数量最多四个,最少一个。『盒子』在整个屏幕上占比见上图。设计部分基于盒子的单位定制盒子内部的排版规则,以保证视觉层面的舒适感。

概述

布局的栅格化系统,我们是基于行(row)和列(col)来定义信息区块的外部框架,以保证页面的每个区域能够稳健地排布起来。下面简单介绍一下它的工作原理:

  • 通过`row`在水平方向建立一组`column`(简写col)
  • 你的内容应当放置于`col`内,并且,只有`col`可以作为`row`的直接元素
  • 栅格系统中的列是指 1 到 24 的值来表示其跨越的范围。例如,三个等宽的列可以使用 `` 来创建
  • 如果一个`row`中的`col`总和超过 24,那么多余的`col`会作为一个整体另起一行排列

Flex 布局

我们的栅格化系统支持 Flex 布局,允许子元素在父节点内的水平对齐方式 - 居左、居中、居右、等宽排列、分散排列。子元素与子元素之间,支持顶部对齐、垂直居中对齐、底部对齐的方式。同时,支持使用 order 来定义元素的排列顺序。 Flex 布局是基于 24 栅格来定义每一个『盒子』的宽度,但不拘泥于栅格。

代码演示

Grid栅格 - 图2

Grid栅格 - 图3

Grid栅格 - 图4

基础栅格

从堆叠到水平排列。

使用单一的一组 RowCol 栅格组件,就可以创建一个基本的栅格系统,所有列(Col)必须放在 Row 内。

  1. <template>
  2. <a-row>
  3. <a-col :span="12">col-12</a-col>
  4. <a-col :span="12">col-12</a-col>
  5. </a-row>
  6. <a-row>
  7. <a-col :span="8">col-8</a-col>
  8. <a-col :span="8">col-8</a-col>
  9. <a-col :span="8">col-8</a-col>
  10. </a-row>
  11. <a-row>
  12. <a-col :span="6">col-6</a-col>
  13. <a-col :span="6">col-6</a-col>
  14. <a-col :span="6">col-6</a-col>
  15. <a-col :span="6">col-6</a-col>
  16. </a-row>
  17. </template>

Align Top

Grid栅格 - 图5

Align Center

Grid栅格 - 图6

Align Bottom

Grid栅格 - 图7

对齐

子元素垂直对齐。

  1. <template>
  2. <p>Align Top</p>
  3. <a-row type="flex" justify="center" align="top">
  4. <a-col :span="4">
  5. <p class="height-100">col-4</p>
  6. </a-col>
  7. <a-col :span="4">
  8. <p class="height-50">col-4</p>
  9. </a-col>
  10. <a-col :span="4">
  11. <p class="height-120">col-4</p>
  12. </a-col>
  13. <a-col :span="4">
  14. <p class="height-80">col-4</p>
  15. </a-col>
  16. </a-row>
  17. <p>Align Center</p>
  18. <a-row type="flex" justify="space-around" align="middle">
  19. <a-col :span="4">
  20. <p class="height-100">col-4</p>
  21. </a-col>
  22. <a-col :span="4">
  23. <p class="height-50">col-4</p>
  24. </a-col>
  25. <a-col :span="4">
  26. <p class="height-120">col-4</p>
  27. </a-col>
  28. <a-col :span="4">
  29. <p class="height-80">col-4</p>
  30. </a-col>
  31. </a-row>
  32. <p>Align Bottom</p>
  33. <a-row type="flex" justify="space-between" align="bottom">
  34. <a-col :span="4">
  35. <p class="height-100">col-4</p>
  36. </a-col>
  37. <a-col :span="4">
  38. <p class="height-50">col-4</p>
  39. </a-col>
  40. <a-col :span="4">
  41. <p class="height-120">col-4</p>
  42. </a-col>
  43. <a-col :span="4">
  44. <p class="height-80">col-4</p>
  45. </a-col>
  46. </a-row>
  47. </template>

Grid栅格 - 图8

Grid栅格 - 图9

Grid栅格 - 图10

Grid栅格 - 图11

排序

通过 order 来改变元素的排序。

  1. <template>
  2. <a-divider orientation="left">Normal</a-divider>
  3. <a-row type="flex">
  4. <a-col :span="6" :order="4">1 col-order-4</a-col>
  5. <a-col :span="6" :order="3">2 col-order-3</a-col>
  6. <a-col :span="6" :order="2">3 col-order-2</a-col>
  7. <a-col :span="6" :order="1">4 col-order-1</a-col>
  8. </a-row>
  9. <a-divider orientation="left">Responsive</a-divider>
  10. <a-row type="flex">
  11. <a-col :span="6" :xs="{ order: 1 }" :sm="{ order: 2 }" :md="{ order: 3 }" :lg="{ order: 4 }">
  12. 1 col-order-responsive
  13. </a-col>
  14. <a-col :span="6" :xs="{ order: 2 }" :sm="{ order: 1 }" :md="{ order: 4 }" :lg="{ order: 3 }">
  15. 2 col-order-responsive
  16. </a-col>
  17. <a-col :span="6" :xs="{ order: 3 }" :sm="{ order: 4 }" :md="{ order: 2 }" :lg="{ order: 2 }">
  18. 3 col-order-responsive
  19. </a-col>
  20. <a-col :span="6" :xs="{ order: 4 }" :sm="{ order: 3 }" :md="{ order: 1 }" :lg="{ order: 1 }">
  21. 4 col-order-responsive
  22. </a-col>
  23. </a-row>
  24. </template>

Grid栅格 - 图12

Grid栅格 - 图13

Grid栅格 - 图14

Grid栅格 - 图15

Grid栅格 - 图16

Grid栅格 - 图17

Flex 填充

Col 提供 flex 属性以支持填充。

  1. <template>
  2. <a-divider orientation="left">Percentage columns</a-divider>
  3. <a-row type="flex">
  4. <a-col :flex="2">2 / 5</a-col>
  5. <a-col :flex="3">3 / 5</a-col>
  6. </a-row>
  7. <a-divider orientation="left">Fill rest</a-divider>
  8. <a-row type="flex">
  9. <a-col flex="100px">100px</a-col>
  10. <a-col flex="auto">auto</a-col>
  11. </a-row>
  12. <a-divider orientation="left">Raw flex style</a-divider>
  13. <a-row type="flex">
  14. <a-col flex="1 1 200px">1 1 200px</a-col>
  15. <a-col flex="0 1 300px">0 1 300px</a-col>
  16. </a-row>
  17. </template>

Grid栅格 - 图18

排版

布局基础。

子元素根据不同的值 start,center,end,space-between,space-around,分别定义其在父节点里面的排版方式。

  1. <template>
  2. <div id="components-grid-demo-flex">
  3. <p>sub-element align left</p>
  4. <a-row type="flex" justify="start">
  5. <a-col :span="4">col-4</a-col>
  6. <a-col :span="4">col-4</a-col>
  7. <a-col :span="4">col-4</a-col>
  8. <a-col :span="4">col-4</a-col>
  9. </a-row>
  10. <p>sub-element align center</p>
  11. <a-row type="flex" justify="center">
  12. <a-col :span="4">col-4</a-col>
  13. <a-col :span="4">col-4</a-col>
  14. <a-col :span="4">col-4</a-col>
  15. <a-col :span="4">col-4</a-col>
  16. </a-row>
  17. <p>sub-element align right</p>
  18. <a-row type="flex" justify="end">
  19. <a-col :span="4">col-4</a-col>
  20. <a-col :span="4">col-4</a-col>
  21. <a-col :span="4">col-4</a-col>
  22. <a-col :span="4">col-4</a-col>
  23. </a-row>
  24. <p>sub-element monospaced arrangement</p>
  25. <a-row type="flex" justify="space-between">
  26. <a-col :span="4">col-4</a-col>
  27. <a-col :span="4">col-4</a-col>
  28. <a-col :span="4">col-4</a-col>
  29. <a-col :span="4">col-4</a-col>
  30. </a-row>
  31. <p>sub-element align full</p>
  32. <a-row type="flex" justify="space-around">
  33. <a-col :span="4">col-4</a-col>
  34. <a-col :span="4">col-4</a-col>
  35. <a-col :span="4">col-4</a-col>
  36. <a-col :span="4">col-4</a-col>
  37. </a-row>
  38. </div>
  39. </template>
  40. <style lang="less" scoped>
  41. #components-grid-demo-flex :deep(.ant-row) {
  42. background: rgba(128, 128, 128, 0.08);
  43. }
  44. </style>

Grid栅格 - 图19

区块间隔

栅格常常需要和间隔进行配合,你可以使用 Rowgutter 属性,我们推荐使用 (16+8n)px 作为栅格间隔(n 是自然数)。

如果要支持响应式,可以写成 { xs: 8, sm: 16, md: 24, lg: 32 }

如果需要垂直间距,可以写成数组形式 [水平间距, 垂直间距] [16, { xs: 8, sm: 16, md: 24, lg: 32 }]

数组形式垂直间距在 1.5.0 之后支持。

  1. <template>
  2. <div class="gutter-example">
  3. <a-row :gutter="16">
  4. <a-col class="gutter-row" :span="6">
  5. <div class="gutter-box">col-6</div>
  6. </a-col>
  7. <a-col class="gutter-row" :span="6">
  8. <div class="gutter-box">col-6</div>
  9. </a-col>
  10. <a-col class="gutter-row" :span="6">
  11. <div class="gutter-box">col-6</div>
  12. </a-col>
  13. <a-col class="gutter-row" :span="6">
  14. <div class="gutter-box">col-6</div>
  15. </a-col>
  16. </a-row>
  17. </div>
  18. </template>
  19. <style scoped>
  20. .gutter-example :deep(.ant-row > div) {
  21. background: transparent;
  22. border: 0;
  23. }
  24. .gutter-box {
  25. background: #00a0e9;
  26. padding: 5px 0;
  27. }
  28. </style>

Grid栅格 - 图20

Grid栅格 - 图21

Grid栅格 - 图22

左右偏移

列偏移。

使用 offset 可以将列向右侧偏。例如,offset={4} 将元素向右侧偏移了 4 个列(column)的宽度。

  1. <template>
  2. <a-row>
  3. <a-col :span="8">col-8</a-col>
  4. <a-col :span="8" :offset="8">col-8</a-col>
  5. </a-row>
  6. <a-row>
  7. <a-col :span="6" :offset="6">col-6 col-offset-6</a-col>
  8. <a-col :span="6" :offset="6">col-6 col-offset-6</a-col>
  9. </a-row>
  10. <a-row>
  11. <a-col :span="12" :offset="6">col-12 col-offset-6</a-col>
  12. </a-row>
  13. </template>

Grid栅格 - 图23

其他属性的响应式

span pull push offset order 属性可以通过内嵌到 xs sm md lg xl xxl 属性中来使用。

其中 :xs="6" 相当于 :xs="{ span: 6 }"

  1. <template>
  2. <a-row>
  3. <a-col :xs="{ span: 5, offset: 1 }" :lg="{ span: 6, offset: 2 }">Col</a-col>
  4. <a-col :xs="{ span: 11, offset: 1 }" :lg="{ span: 6, offset: 2 }">Col</a-col>
  5. <a-col :xs="{ span: 5, offset: 1 }" :lg="{ span: 6, offset: 2 }">Col</a-col>
  6. </a-row>
  7. </template>

Grid栅格 - 图24

响应式布局

参照 Bootstrap 的 响应式设计,预设六个响应尺寸:xs sm md lg xl xxl

  1. <template>
  2. <a-row>
  3. <a-col :xs="2" :sm="4" :md="6" :lg="8" :xl="10">Col</a-col>
  4. <a-col :xs="20" :sm="16" :md="12" :lg="8" :xl="4">Col</a-col>
  5. <a-col :xs="2" :sm="4" :md="6" :lg="8" :xl="10">Col</a-col>
  6. </a-row>
  7. </template>

Grid栅格 - 图25

栅格排序

列排序。

通过使用 pushpull 类就可以很容易的改变列(column)的顺序。

  1. <template>
  2. <a-row>
  3. <a-col :span="18" :push="6">col-18 col-push-6</a-col>
  4. <a-col :span="6" :pull="18">col-6 col-pull-18</a-col>
  5. </a-row>
  6. </template>

Grid栅格 - 图26

栅格配置器

可以简单配置几种等分栅格和间距。

  1. <template>
  2. <div id="components-grid-demo-playground">
  3. <div style="margin-bottom: 16px">
  4. <span style="margin-right: 6px">Horizontal Gutter (px):</span>
  5. <div style="width: 50%">
  6. <a-slider
  7. v-model:value="gutterKey"
  8. :min="0"
  9. :max="Object.keys(gutters).length - 1"
  10. :marks="gutters"
  11. :step="null"
  12. />
  13. </div>
  14. <span style="margin-right: 6px">Vertical Gutter (px):</span>
  15. <div style="width: 50%">
  16. <a-slider
  17. v-model:value="vgutterKey"
  18. :min="0"
  19. :max="Object.keys(vgutters).length - 1"
  20. :marks="vgutters"
  21. :step="null"
  22. />
  23. </div>
  24. <span style="margin-right: 6px">Column Count:</span>
  25. <div style="width: 50%">
  26. <a-slider
  27. v-model:value="colCountKey"
  28. :min="0"
  29. :max="Object.keys(colCounts).length - 1"
  30. :marks="colCounts"
  31. :step="null"
  32. />
  33. </div>
  34. </div>
  35. <a-row :gutter="[gutters[gutterKey], vgutters[vgutterKey]]">
  36. <a-col
  37. v-for="item in colCounts[colCountKey]"
  38. :key="item.toString()"
  39. :span="24 / colCounts[colCountKey]"
  40. >
  41. <div>Column</div>
  42. </a-col>
  43. </a-row>
  44. <a-row :gutter="[gutters[gutterKey], vgutters[vgutterKey]]">
  45. <a-col
  46. v-for="item in colCounts[colCountKey]"
  47. :key="item.toString()"
  48. :span="24 / colCounts[colCountKey]"
  49. >
  50. <div>Column</div>
  51. </a-col>
  52. </a-row>
  53. <pre
  54. >{{ rowColHtml }}
  55. </pre>
  56. <pre
  57. >{{ rowColHtml }}
  58. </pre>
  59. </div>
  60. </template>
  61. <script lang="ts">
  62. import { computed, defineComponent, reactive, toRefs } from 'vue';
  63. export default defineComponent({
  64. setup() {
  65. const state = reactive<{
  66. gutterKey: number;
  67. vgutterKey: number;
  68. colCountKey: number;
  69. gutters: { [key: number]: number };
  70. colCounts: { [key: number]: number };
  71. vgutters: { [key: number]: number };
  72. }>({
  73. gutterKey: 1,
  74. vgutterKey: 1,
  75. colCountKey: 2,
  76. gutters: {},
  77. colCounts: {},
  78. vgutters: {},
  79. });
  80. [8, 16, 24, 32, 40, 48].forEach((value: number, i: number) => {
  81. state.gutters[i] = value;
  82. });
  83. [8, 16, 24, 32, 40, 48].forEach((value, i) => {
  84. state.vgutters[i] = value;
  85. });
  86. [2, 3, 4, 6, 8, 12].forEach((value, i) => {
  87. state.colCounts[i] = value;
  88. });
  89. const rowColHtml = computed(() => {
  90. const colCount = state.colCounts[state.colCountKey];
  91. const getter = [state.gutters[state.gutterKey], state.vgutters[state.vgutterKey]];
  92. let colCode = '<a-row :gutter="[' + getter + ']">\n';
  93. for (let i = 0; i < colCount; i++) {
  94. const spanNum = 24 / colCount;
  95. colCode += ' <a-col :span="' + spanNum + '"/>\n';
  96. }
  97. colCode += '</a-row>';
  98. return colCode;
  99. });
  100. return {
  101. rowColHtml,
  102. ...toRefs(state),
  103. };
  104. },
  105. });
  106. </script>
  107. <style scoped>
  108. #components-grid-demo-playground :deep(.ant-col) {
  109. background: transparent;
  110. border: 0;
  111. }
  112. #components-grid-demo-playground :deep(.ant-col) > div {
  113. background: #00a0e9;
  114. height: 120px;
  115. line-height: 120px;
  116. font-size: 13px;
  117. }
  118. #components-grid-demo-playground pre {
  119. background: #f9f9f9;
  120. border-radius: 6px;
  121. font-size: 13px;
  122. padding: 8px 16px;
  123. }
  124. </style>

API

Row

成员说明类型默认值
alignflex 布局下的垂直对齐方式:top middle bottomstringtop
gutter栅格间隔,可以写成像素值或支持响应式的对象写法来设置水平间隔 { xs: 8, sm: 16, md: 24}。或者使用数组形式同时设置 [水平间距, 垂直间距]1.5.0 后支持)。number/object/array0
justifyflex 布局下的水平排列方式:start end center space-around space-betweenstringstart
type布局模式,可选 flex现代浏览器 下有效string

Col

成员说明类型默认值
flexflex 布局填充string|number-
offset栅格左侧的间隔格数,间隔内不可以有栅格number0
order栅格顺序,flex 布局模式下有效number0
pull栅格向左移动格数number0
push栅格向右移动格数number0
span栅格占位格数,为 0 时相当于 display: nonenumber-
xs<576px 响应式栅格,可为栅格数或一个包含其他属性的对象number|object-
sm≥576px 响应式栅格,可为栅格数或一个包含其他属性的对象number|object-
md≥768px 响应式栅格,可为栅格数或一个包含其他属性的对象number|object-
lg≥992px 响应式栅格,可为栅格数或一个包含其他属性的对象number|object-
xl≥1200px 响应式栅格,可为栅格数或一个包含其他属性的对象number|object-
xxl≥1600px 响应式栅格,可为栅格数或一个包含其他属性的对象number|object-

响应式栅格的断点扩展自 BootStrap 4 的规则(不包含链接里 occasionally 的部分)。

FAQ

IE9 响应式不工作怎么办?

可以引入 matchMedia polyfill 添加支持。