Flexbox布局图案:5平方(1大,4小)

时间:2016-04-12 12:12:30

标签: html css layout flexbox ui-patterns

我正在尝试组合一个弹性箱布局 - 出于这个问题的目的,我将其称为“方形五块”布局(见图) - 但我遇到了麻烦,因为所有的实验我试过不要正确包装。

我已经看到使用浮点数完成相同的布局,但我希望能够在未来证明它并使用更新的方法 - 因此是flexbox。我已经尝试过搜索这个模式,但似乎没有一致的名称,所以找到类似的例子证明是艰难的。

我也使用视口单元来确保块保持完全正方形,所有这些都基于视口宽度(vw)单位。

div { width: 25vw; height: 25vw; }
div:first-of-type { width: 50vw; height: 50vw; }

关键特征是所有块都应该是方形的,但第一个块应该是其余四个块的大小。有没有人见过或曾经在这样的布局上工作过?

5-block grid of perfect squars using flexbox; first block should be exact size of the remaining four blocks

谢谢!

2 个答案:

答案 0 :(得分:3)

嵌套的flexboxes可以与媒体查询结合使用。

Codepen Demo with media query

基本上:

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.parent {
  width: 100vw;
  display: flex;
}
.col {
  flex: 0 0 50vw;
  height: 50vw;
  background: blue;
}
.wrap {
  display: flex;
  flex-wrap: wrap
}
.box {
  flex: 0 0 25vw;
  height: 25vw;
}
.red {
  background: red;
}
.pink {
  background: pink;
}
.orange {
  background: orange;
}
.grey {
  background: grey;
}
<div class="parent">
  <div class="col"></div>
  <div class="col wrap">
    <div class="box red"></div>
    <div class="box pink"></div>
    <div class="box orange"></div>
    <div class="box grey"></div>
  </div>
</div>

答案 1 :(得分:2)

请参阅下面的代码并展开结果。我用过flexbox

body {
  margin: 0;
  height: 100vh;
  width: 100vw;
}

.wrapper {
  height: 100%;
}

.layout.horizontal,
.layout.vertical {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.layout.horizontal {
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.layout.vertical {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.flex {
  -ms-flex: 1 1 0.000000001px;
  -webkit-flex: 1;
  flex: 1;
  -webkit-flex-basis: 0.000000001px;
  flex-basis: 0.000000001px;
}

.box {
  color: #fff;
  text-align: center;
}

.box.blue {
  background: #312783;
}

.box.green {
  background: #0B983A;
}

.box.yellow {
  background: #E1BD48;
}

.box.pink {
  background: #D2007F;
}

.box.orange {
  background: #EB6053;
}

@media all and (max-width: 768px) {
  .change-in-responsive.layout.horizontal {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
<div class="layout horizontal wrapper change-in-responsive">
  <div class="box large flex blue">1</div>
  <div class="flex layout vertical">
    <div class="flex layout horizontal">
      <div class="box green flex">2</div>
      <div class="box yellow flex">3</div>
    </div>
    <div class="flex layout horizontal">
      <div class="box pink flex">4</div>
      <div class="box orange flex">5</div>
    </div>
  </div>
</div>