The use of micro-channel program _1 view small components

Here Insert Picture Description
Ideas:
that is, to which the pattern of decomposition and assembly.
Program:
decomposed into eight pieces
Here Insert Picture Description
to achieve

//index.wxml
<view class="section">
  <view class="section__title">flex-direction: row</view>
  <view class="flex-wrp" style="flex-direction:row;">
    <view class="flex-item bc_green1">1</view>
    <view class="flex-item bc_red2">2</view>
    <view class="flex-item bc_blue3">3</view>
    <view class="flex-item bc_red">2</view>
    <view class="flex-item bc_blue">3</view>
  </view>
   <view class="flex-wrp" style="flex-direction:row;">
    <view class="flex-item bc_green">1</view>
    <view class="flex-item bc_red3"></view>
    <view class="flex-item bc_blue4"></view>
  </view>
</view>
//index.wxss
@import "../lib/weui.wxss";

.page-section{
  margin-bottom: 20rpx;
}
.flex-wrp {display: flex;}
.bc_green1 {background: green;width:50px; height: 20px;}
.bc_red2 {background: red;width:25px; height: 20px;}
.bc_blue3 {background: blue;width:25px; height: 20px;}
.bc_red {background: red;width:100px; height: 20px;}
.bc_blue {background: blue;width:100px; height: 20px;}
.bc_red3 {background: red;width:100px; height: 80px;}
.bc_blue4 {background: blue;width:100px; height: 80px;}
.bc_green {background: green;width:100px; height: 80px;}

Option Two:
only six square mosaic
Here Insert Picture Description
realization

//index.wxml
<view class="section">
  <view class="section__title">flex-direction: row</view>
  <view class="flex-wrp" style="flex-direction:row;">
      <view class="flex-wrp" style="flex-direction:column;">
         <view class="flex-wrp" style="flex-direction:row;">
           <view class="flex-item bc_green">1</view>
           <view class="flex-item bc_red">2</view>
           <view class="flex-item bc_blue">3</view>
         </view>
        <view class="flex-item bc_green1">1</view>
      </view>
    <view class="flex-item bc_red1">2</view>
    <view class="flex-item bc_blue1">3</view>
  </view>
</view>
//index.wxss
@import "../lib/weui.wxss";

.page-section{
  margin-bottom: 20rpx;
}
.flex-wrp {display: flex;}
.bc_green {background: green;width:40px; height: 30px;}
.bc_red {background: red;width:30px; height: 30px;}
.bc_blue {background: blue;width:30px; height: 30px;}
.bc_green1 {background: green;width:100px; height: 70px;}
.bc_red1 {background: red;width:100px; height: 100px;}
.bc_blue1 {background: blue;width:100px; height: 100px;}

Option Three
use float

//index.wxml
<view class="section">
  <view class="section__title">flex-direction: row</view>
    <view class="flex-wrp" style="flex-direction:row;">
           <view class="flex-item bc_green">1
              <view class="flex-item bc_blue_float">3</view>
              <view class="flex-item bc_red_float">2</view>
           </view>
           <view class="flex-item bc_red1">2</view>
           <view class="flex-item bc_blue1">3</view>
    </view>
</view>
//index.wxss
@import "../lib/weui.wxss";

.page-section{
  margin-bottom: 20rpx;
}
.flex-wrp {display: flex;}
.bc_green {background: green;width:100px; height: 100px;}
.bc_red_float {background: red;width:30px; height: 30px;float:right;}
.bc_blue_float {background: blue;width:30px; height: 30px;float:right;}
.bc_red1 {background: red;width:100px; height: 100px;}
.bc_blue1 {background: blue;width:100px; height: 100px;}

final effect
Here Insert Picture Description

Published 222 original articles · won praise 48 · views 20000 +

Guess you like

Origin blog.csdn.net/qq_44116998/article/details/104588420