在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
常见应用场景 现在的APP界面基本都是大同小异, 宫格布局现在基本成了每个APP必然的存在. 带边框, 常用在"功能导航"页面 无边框, 常用在首页分类 设计目标 在scss环境下, 通过mixin实现n宫格, 并且可以支持"有无边框"和"每个格是否正方形": @include grid(3, 3, true); // 3 x 3, 有边框, 且每个格为正方形 @include grid(2, 5, false, false); // 2 x 5, 无边框 最终效果
"padding百分比"小技巧 先解释一个小技巧, 如何实现正方形, 保证看一遍就会, 结论就是: 设计思路(无关你是scss还是less)
因此我们的html是这样的: <!-- a-grid是一个flex容器, 方便他的内容做"水平/垂直居中" --> <div class="a-grid"> <!-- a-grid__item用来占位实现正方形 --> <div class="a-grid__item"> <!-- item__content才是真正装内容的容器 --> <div class="item__content"> 内容... </div> </div> </div> 代码(scss) 这里做了3件事:
.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); } 提醒大家: 如要做n x m的布局, 用@include grid(n, m)后千万别忘了在html中添加 n x m个对应的dom结构. 最终 内容很简单, 还有很多可以优化的地方, 比如边框可以改成"头发丝"边框, 在真机上看起来更细些. 好了, 内容就这些, 抛砖引玉, 如果有更好的实现方式请留言, 感谢大家阅读. 最近在写一个css样式库, 目标是兼容小程序, 大家有兴趣的可以一起玩, 这是本节课对应的源码: https://github.com/any86/3a.css/blob/develop/src/components/_grid.scss 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持极客世界。 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论