您好,登錄后才能下訂單哦!
使用css怎么實(shí)現(xiàn)一個(gè)n宮格布局?相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
設(shè)計(jì)目標(biāo)
在scss環(huán)境下, 通過mixin實(shí)現(xiàn)n宮格, 并且可以支持"有無(wú)邊框"和"每個(gè)格是否正方形":
@include grid(3, 3, true); // 3 x 3, 有邊框, 且每個(gè)格為正方形 @include grid(2, 5, false, false); // 2 x 5, 無(wú)邊框
最終效果
"padding百分比"小技巧
先解釋一個(gè)小技巧, 如何實(shí)現(xiàn)正方形, 保證看一遍就會(huì), 結(jié)論就是:
padding的值如果是百分比, 那么他是相對(duì)"父"元素寬度計(jì)算的, 也就是說(shuō)如果"父"元素寬度是100px, "子"元素設(shè)置padding-top:100%,"子"元素的padding-top實(shí)際上等于100px, 這樣就實(shí)現(xiàn)了一個(gè)正方形(100 x 100). 為了減少干擾, 我們把"子"元素高度設(shè)置為0;
設(shè)計(jì)思路(無(wú)關(guān)你是scss還是less)
為了方便內(nèi)部元素水平/垂直居中, 整體我們用flex布局.
使用正方形占位, 因?yàn)橛昧藀adding-top:100%, 所以我們就需要再單獨(dú)用一個(gè)div來(lái)裝內(nèi)容, 我給他起名"item__content".
為了讓內(nèi)容的容器div充滿方塊, 我們給他設(shè)置樣式:position:absolute;top:0;left:0;right:0;bottom:0;;
因此我們的html是這樣的:
<!-- a-grid是一個(gè)flex容器, 方便他的內(nèi)容做"水平/垂直居中" --> <div class="a-grid"> <!-- a-grid__item用來(lái)占位實(shí)現(xiàn)正方形 --> <div class="a-grid__item"> <!-- item__content才是真正裝內(nèi)容的容器 --> <div class="item__content"> 內(nèi)容... </div> </div> </div>
代碼(scss)
這里做了3件事:
為了不冗余, 我把公共的部分抽離的出來(lái)起名".a-grid";
mixin支持4個(gè)參數(shù), 分別是$row(行數(shù)), $column(列數(shù)), $hasBorder(是否有邊框), $isSquare(是否保證每個(gè)塊是正方形).
mixin內(nèi)部通過計(jì)算并結(jié)合:nth-child實(shí)現(xiàn)"整體無(wú)外邊框"的效果,
.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; } } } }
使用
// 生成一個(gè) 3行3列, 正方形格子的宮格 .a-grid-3-3 { @include grid(3, 3, true); } // 生成一個(gè) 2行5列, 無(wú)邊框?qū)m格, 每個(gè)格子由內(nèi)容決定高度 .a-grid-2-5 { @include grid(2, 5, false, false); }
看完上述內(nèi)容,你們掌握使用css怎么實(shí)現(xiàn)一個(gè)n宮格布局的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。