web前端入門到實戰:css如何實現n宮格佈局?

常見應用場景

如今的APP界面基本都是大同小異, 宮格佈局如今基本成了每一個APP必然的存在.css

帶邊框, 經常使用在"功能導航"頁面
無邊框, 經常使用在首頁分類html

設計目標

在scss環境下, 經過mixin實現n宮格, 而且能夠支持"有無邊框"和"每一個格是否正方形":前端

@include grid(3, 3, true); // 3 x 3, 有邊框, 且每一個格爲正方形
@include grid(2, 5, false, false); // 2 x 5, 無邊框

最終效果

web前端入門到實戰:css如何實現n宮格佈局?

"padding百分比"小技巧

先解釋一個小技巧, 如何實現正方形, 保證看一遍就會, 結論就是:web

padding的值若是是百分比, 那麼他是相對"父"元素寬度計算的, 也就是說若是"父"元素寬度是100px, "子"元素設置padding-top:100%,"子"元素的padding-top實際上等於100px, 這樣就實現了一個正方形(100 x 100). 爲了減小干擾, 咱們把"子"元素高度設置爲0;less

image

設計思路(無關你是scss仍是less)

  1. 爲了方便內部元素水平/垂直居中, 總體咱們用flex佈局.
  2. 使用正方形佔位, 由於用了padding-top:100%, 因此咱們就須要再單獨用一個div來裝內容, 我給他起名"item__content".
  3. 爲了讓內容的容器div充滿方塊, 咱們給他設置樣式:position:absolute;top:0;left:0;right:0;bottom:0;;

所以咱們的html是這樣的:dom

<!-- a-grid是一個flex容器, 方便他的內容作"水平/垂直居中" -->
<div class="a-grid">
  <!-- a-grid__item用來佔位實現正方形 -->
  <div class="a-grid__item">
      <!-- item__content纔是真正裝內容的容器 -->
      <div class="item__content">
        內容...
      </div>
  </div>
</div>
專門創建的學習Q-q-u-n ⑦⑧④-⑦⑧③-零①②  分享學習方法和須要注意的小細節,互相交流學習,不停更新最新的教程和學習技巧(從零基礎開始到WEB前端項目實戰教程,學習工具,全棧開發學習路線以及規劃)

代碼(scss)

這裏作了3件事:ide

爲了避免冗餘, 我把公共的部分抽離的出來起名".a-grid";
mixin支持4個參數, 分別是$row(行數), $column(列數), $hasBorder(是否有邊框), $isSquare(是否保證每一個塊是正方形).
mixin內部經過計算並結合:nth-child實現"總體無外邊框"的效果,工具

.a-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;

    .a-grid__item {
        text-align:center;
        position:relative;
        >.item__content {
            display:flex
            flex-flow: column;
            align-items: center;
            justify-content: center;
        }
    }
}

@mixin grid($row:3, $column:3, $hasBorder:false, $isSquare:true) {
    @extend .a-grid;

    .a-grid__item {

        flex-basis: 100%/$column;

        @if($isSquare) {
            padding-bottom: 100%/$column;
            height: 0;
        }

        >.item__content {

            @if($isSquare) {
                position:absolute;
                top:0;left:0;right:0;bottom:0;
            }
        }
    }

    @for $index from 1 to (($row - 1) * $column + 1) {
        .a-grid__item:nth-child(#{$index}) {
            @if($hasBorder) {
                border-bottom: 1px solid #eee;
            }
        }
    }

    @for $index from 1 to $column {
        .a-grid__item:nth-child(#{$column}n + #{$index}) {
            @if($hasBorder) {
                border-right: 1px solid #eee;
            }
        }
    }
}

使用

// 生成一個 3行3列, 正方形格子的宮格
.a-grid-3-3 {
    @include grid(3, 3, true);
}

// 生成一個 2行5列, 無邊框宮格, 每一個格子由內容決定高度
.a-grid-2-5 {
    @include grid(2, 5, false, false);
}
專門創建的學習Q-q-u-n ⑦⑧④-⑦⑧③-零①②  分享學習方法和須要注意的小細節,互相交流學習,不停更新最新的教程和學習技巧(從零基礎開始到WEB前端項目實戰教程,學習工具,全棧開發學習路線以及規劃)

提醒你們: 如要作n x m的佈局, 用@include grid(n, m)後千萬別忘了在html中添加 n x m個對應的dom結構.佈局

最終

內容很簡單, 還有不少能夠優化的地方, 好比邊框能夠改爲"頭髮絲"邊框, 在真機上看起來更細些.好了, 內容就這些, 拋磚引玉, 若是有更好的實現方式請留言, 感謝你們閱讀.學習

相關文章
相關標籤/搜索