美文网首页
Flex 布局教程:实例篇

Flex 布局教程:实例篇

作者: 流沙麒麟客 | 来源:发表于2017-03-01 19:21 被阅读1107次

上一篇文章介绍了Flex布局的语法,今天介绍常见的Flex写法。

你会看到,不管是什么布局,Flex 往往都可以几行命令搞定。


这里只列出代码,详细的语法解释请查阅Flex 布局教程:语法篇

一、骰子的布局

骰子的一面,最多可以放置9个点。


下面,就来看看Flex如何实现,从1个点到9个点的布局。
我们先设定下公共CSS:

* {
   box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: center;
  flex-wrap: wrap;
  align-content: center;
  font-family: 'Open Sans', sans-serif;
  background: #1d1f20;
}

然后我们先来创建第一个骰子:

<div class="first-face">
    <span class="pip"></span>
</div>

然后是CSS样式:

 [class$="face"] {
   margin: 16px;
   padding: 4px;
   background-color: #e7e7e7;
   width: 104px;
   height: 104px;
   object-fit: contain;
   box-shadow:
   inset 0 5px white, inset 0 -5px #bbb, inset 5px 0 #d7d7d7, inset -5px 0 #d7d7d7; 
  border-radius: 10%;
}
.pip { 
  display: block; 
  width: 24px; 
  height: 24px; 
  border-radius: 50%; 
  margin: 4px; 
  background-color: #333; 
  box-shadow: inset 0 3px #111, inset 0 -3px #555;
 }

目前效果:


然后,把黑点居中:

.first-face {
 display: flex;
 justify-content: center;
 align-items: center; 
}

现在的效果如下:


同理,实现剩余5个骰子,html 代码如下:

<div class="second-face">
    <span class="pip"></span>
    <span class="pip"></span>
</div>
<div class="third-face">
    <span class="pip"></span>
    <span class="pip"></span>
    <span class="pip"></span>
</div>
<div class="fourth-face">
    <div class="column">
        <span class="pip"></span>
        <span class="pip"></span>
    </div>
    <div class="column">
        <span class="pip"></span>
        <span class="pip"></span>
    </div>
</div>
<div class="fifth-face">
    <div class="column">
        <span class="pip"></span>
        <span class="pip"></span>
    </div>
    <div class="column">
        <span class="pip"></span>
    </div>
    <div class="column">
        <span class="pip"></span>
        <span class="pip"></span>
    </div>
</div>
<div class="sixth-face">
    <div class="column">
        <span class="pip"></span>
        <span class="pip"></span>
        <span class="pip"></span>
    </div>
    <div class="column">
        <span class="pip"></span>
        <span class="pip"></span>
        <span class="pip"></span>
    </div>
</div>

CSS代码:

.second-face { 
display: flex; 
justify-content: space-between; 
}
.second-face .pip:nth-of-type(2) { 
align-self: flex-end; 
}
.third-face { 
display: flex; 
justify-content: space-between; 
}
.third-face .pip:nth-of-type(2) { 
align-self: center; 
}
.third-face .pip:nth-of-type(3) { 
align-self: flex-end; 
}
.fourth-face, .sixth-face {
 display: flex; 
justify-content: space-between; 
}
.fourth-face .column, .sixth-face .column { 
display: flex; 
flex-direction: column; 
justify-content: space-between; 
}
.fifth-face { 
display: flex; 
justify-content: space-between; 
}
.fifth-face .column { 
display: flex; 
 flex-direction: column;
 justify-content: space-between; 
}
.fifth-face .column:nth-of-type(2) {
 justify-content: center;
 }

现在效果如下:


可以到codepen查看完整Demo。

如果不加说明,本节的HTML模板一律如下。

<div class="box">
  <span class="item"></span>
</div>

上面代码中,div元素(代表骰子的一个面)是Flex容器,span元素(代表一个点)是Flex项目。如果有多个项目,就要添加多个span元素,以此类推。

1.1 单项目

首先,只有左上角1个点的情况。Flex 布局默认就是首行对齐,所以一行代码就够了。

首行对齐
.box {
  display: flex;
}

设置项目的对齐方式,就能实现居中对齐和右对齐。

中对齐
.box {
  display: flex;
  justify-content: center;
}
右对齐
.box {
  display: flex;
  justify-content: flex-end;
}

设置交叉轴对齐方式,可以垂直移动主轴。

.box {
  display: flex;
  align-items: center;
}
.box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.box {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
1.2 双项目
.box {
  display: flex;
  justify-content: space-between;
}
.box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items:center;
}
 .box {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-end;
    }
.box {
    display: flex;
}
.item:nth-child(2) {
    align-self:center;
}
.box {
    display: flex;
    justify-content:space-between;
}
.item:nth-child(2) {
    align-self:flex-end;
}
1.3 三项目

    .box {
      display: flex;
    }

    .item:nth-child(2) {
      align-self: center;
    }

    .item:nth-child(3) {
      align-self: flex-end;
    }
1.4 四项目

HTML代码如下:

    <div class="box">
            <span class="item"></span>
            <span class="item"></span>
            <span class="item"></span>
            <span class="item"></span>
    </div>

CSS代码如下:

.box {
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    align-content:space-between;
}

HTML代码如下:

    <div class="box">
        <div class="column">
            <span class="item"></span>
            <span class="item"></span>
        </div>
        <div class="column">
            <span class="item"></span>
            <span class="item"></span>
        </div>
    </div>

CSS代码如下:

.fourth-box {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.fourth-box .column {
    flex-basis: 100%;
    display: flex;
    justify-content: space-between;
    }

1.5 五项目


HTML代码如下:

    <div class="fifth-box">
        <div class="column">
            <span class="item"></span>
            <span class="item"></span>
        </div>
        <div class="column">
            <span class="item"></span>
        </div>
        <div class="column">
            <span class="item"></span>
            <span class="item"></span>
        </div>
    </div>

CSS代码如下:

.fifth-box {
    display: flex;
    justify-content: space-between;
}
.fifth-box .column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fifth-box .column:nth-of-type(2) {
    justify-content: center;
}

1.6 五项目


HTML代码如下:

    <div class="box">
            <span class="item"></span>
            <span class="item"></span>
            <span class="item"></span>
            <span class="item"></span>
            <span class="item"></span>
            <span class="item"></span>
    </div>

CSS代码如下:

.box {
    display: flex;
    flex-wrap:wrap;
    align-content:space-between;
}
.box {
    display: flex;
    flex-direction:column;
    flex-wrap:wrap;
    align-content:space-between;
}

1.7 九项目

.ninth-box {
    display: flex;
    flex-wrap:wrap;
}

<br />

二、网格布局

2.1 基本网格布局

最简单的网格布局,就是平均分布。在容器里面平均分配空间,跟上面的骰子布局很像,但是需要设置项目的自动缩放。

HTML代码如下:

    <div class="Grid">
        <div class="Grid-cell">...</div>
        <div class="Grid-cell">...</div>
        <div class="Grid-cell">...</div>
    </div>

CSS代码如下:

.Grid {
  display: flex;
}
.Grid-cell {
  flex: 1;
}
2.2 百分比布局

某个网格的宽度为固定的百分比,其余网格平均分配剩余的空间。

HTML代码如下:

    <div class="Grid">
        <div class="Grid-cell u-1of4">...</div>
        <div class="Grid-cell">...</div>
        <div class="Grid-cell u-1of3">...</div>
    </div>

CSS代码如下:

.Grid {
    display: flex;
}
.Grid-cell {
    flex: 1;
}
.Grid-cell.u-full {
    flex: 0 0 100%;
}
.Grid-cell.u-1of2 {
    flex: 0 0 50%;
}
.Grid-cell.u-1of3 {
    flex: 0 0 33.3333%;
}
.Grid-cell.u-1of4 {
    flex: 0 0 25%;
}

<br />

三、圣杯布局

圣杯布局(Holy Grail Layout)指的是一种最常见的网站布局。页面从上到下,分成三个部分:头部(header),躯干(body),尾部(footer)。其中躯干又水平分成三栏,从左到右为:导航栏、主栏、副栏。

HTML代码如下:

<body class="HolyGrail">
    <header>...</header>
    <div class="HolyGrail-body">
        <main class="HolyGrail-content">...</main>
        <nav class="HolyGrail-nav">...</nav>
        <aside class="HolyGrail-ads">...</aside>
    </div>
    <footer>...</footer>
</body>

CSS代码如下:

html,
body {
    margin: 0;
    padding: 0;
}
.HolyGrail {
    display: flex;
    /*相对于视口的高度。视口被均分为100单位的vh*/
            /*这里相当于视口的高度*/
    min-height: 100vh;
    flex-direction: column;
}
header,
footer {
    flex: 1;
    background: #666460;
}
.HolyGrail-body {
    display: flex;
    flex: 1;
}
.HolyGrail-content {
    flex: 1;
    background: #DAD7D2;
}
.HolyGrail-nav,
.HolyGrail-ads {
    /*两个边栏的宽设为12em*/
    flex: 0 0 12em;
}
.HolyGrail-nav {
    /*导航放到最左边*/
    order: -1;
    background: #57BEDB;
}
.HolyGrail-ads {
    background: #FF5812;
}

如果是小屏幕,躯干的三栏自动变为垂直叠加:

 @media (max-width:768px) {
.HolyGrail-body {
    flex-direction: column;
    flex: 1;
}
.HolyGrail-nav,
.HolyGrail-ads,
.HolyGrail-content {
    flex: auto;
}
}

<br />

四、输入框布局

我们常常需要在输入框的前方添加提示,后方添加按钮。


HTML代码如下:

    <div class="InputAddOn">
        <span class="InputAddOn-item">...</span>
        <input class="InputAddOn-field" />
        <button class="InputAddOn-item">...</button>
    </div>

CSS代码如下:

.InputAddOn {
    display: flex;
}
.InputAddOn-field {
    flex: 1;
}

<br />

五、悬挂式布局

有时,主栏的左侧或右侧,需要添加一个图片栏。

HTML代码如下:

    <div class="Media">
        <img class="Media-figure" src="" alt="" />
        <p class="Media-body">...</p>
    </div>

CSS代码如下:

.Media {
    display: flex;
    align-items: flex-start;
}
.Media-figure {
    margin-right: 1em;
}
.Media-body {
    flex: 1;
}

<br />

六、固定的底栏

有时,页面内容太少,无法占满一屏的高度,底栏就会抬高到页面的中间。这时可以采用Flex布局,让底栏总是出现在页面的底部。

HTML代码如下:

    <div class="Site">
        <header>#Header</header>
        <main class="Site-content">#Content</main>
        <footer>#Footer</footer>
    </div>

CSS代码如下:

html, body {
    padding: 0;
    margin: 0;
}
.Site {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
.Site-content {
    flex: 1;
}

<br />

七、流式布局

每行的项目数固定,会自动分行。

CSS的写法:

.parent {
    width: 200px;
    height: 150px;
    background-color: black;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
}
.child {
    box-sizing: border-box;
    background-color: white;
    flex: 0 0 25%;
    height: 50px;
    border: 1px solid red;
}

其8个的HTML代码:

    <div class="parent">
        <span class="child"></span>
        <span class="child"></span>
        <span class="child"></span>
        <span class="child"></span>
        <span class="child"></span>
        <span class="child"></span>
        <span class="child"></span>
        <span class="child"></span>
    </div>

<br />
来源:Flex 布局教程:实例篇

相关文章

  • Flex 布局教程

    一、Flex 布局教程:语法篇 Flex 布局教程:语法篇 二、Flex 布局教程:实例篇 Flex...

  • Flex 布局(转载阮一峰博客)

    Flex 布局教程:语法篇 Flex 布局教程:实例篇

  • flex

    Flex 布局教程:语法Flex 布局教程:实例篇

  • 【学习资料整理】30分钟掌握Flex布局

    了解flex基本语法阮一峰——Flex 布局教程:语法篇 flex实例布局阮一峰——Flex 布局教程:实例篇 f...

  • flex布局学习笔记

    经典教程 Flex 布局教程:语法篇Flex 布局教程:实例篇flex布局游戏 理解 flex布局实现需要至少两层...

  • 阮一峰CSS flex -弹性布局

    阮一峰CSS flex 布局教程 Flex 布局教程:实例篇

  • flex记录

    教程:Flexbox 布局的最简单表单Flex 布局教程:语法篇Flex 布局教程:实例篇 父元素为 flex 布...

  • 小程序CSS知识点

    一、flex布局Flex 布局教程:语法篇Flex 布局教程:实例篇 二、CSS position 属性总结CSS...

  • flex布局

    具体参考阮一峰博客 Flex 布局教程:语法篇Flex 布局教程:实例篇

  • Flex布局

    转载自 阮一峰Flex 布局教程:语法篇Flex 布局教程:实例篇

网友评论

      本文标题:Flex 布局教程:实例篇

      本文链接:https://www.haomeiwen.com/subject/rzxtgttx.html