博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
移动端重构实战系列3——各种等分
阅读量:4970 次
发布时间:2019-06-12

本文共 3195 字,大约阅读时间需要 10 分钟。

单行,不考虑间距等分

以sheral的为例:

.nav-list{
@include equal-flex(nav-item);}

equal-flex的mixin定义在中,代码如下:

// flex等分@mixin equal-flex($children: li) {
display: flex; $childrenEle: li div p a span strong; @if index($childrenEle, $children) { // 常用元素 #{$children} {
flex: 1; width: 1%; } } @else {
.#{$children} {
// 自动加.成class flex: 1; width: 1%; } }}

参数部分可以是常用的li div p a span strong几个元素,也可以是class,会自动加.

除了使用flex等分之外,我们还可以使用table办法来等分,同样sandal里面也定义了一个equal-table的mixin,代码如下:

// table 等分@mixin equal-table($children: li) {
display: table; table-layout: fixed; width: 100%; $childrenEle: li div p a span strong; @if index($childrenEle, $children) { #{$children} {
display: table-cell; } } @else {
.#{$children} {
display: table-cell; } }}

间距相等,剩余item平分

分为单行及多行情况,单行直接flex就好,而多行的flex老版本兼容不是很好,所以不建议使用,直接用原始的float

先说单行的,以sheral的的第一个为例:

.equal--gap{
@include line-equal-gap($children: line-equal-item);}

line-equal-gap的mixin同样定义在中,代码如下:

// line equal@mixin line-equal-gap($gap: 10px, $lr: true, $children: li) {
display: flex; @if $lr { // 左右边缘是否有gap padding-left: $gap; padding-right: $gap; } @if $children == li {
// 默认使用li元素 #{$children} {
flex: 1; width: 1%; &:not(:first-of-type){ margin-left: $gap; } } } @else {
// 否则使用class .#{$children} {
flex: 1; width: 1%; &:not(:first-of-type){ margin-left: $gap; } } }}

通过flex来实现,如果左右边缘也有间隙,则设置左右padding,然后设置子元素的非第一个元素的margin-left

关于多行的可以参考sheral的实现,这里以卡片2为例,关键代码如下:

$cardFlexSwitch:       false !default; // 默认使用float$cardGap:              10px !default; // 默认间距为10px$carLineNum:           2 !default; // 目前只支持2 或 3 等分.card-list {
@if $cardFlexSwitch { display: flex; flex-wrap: wrap; } @else {
overflow: hidden; } .card-item {
position: relative; width: 100% / $carLineNum; @if not $cardFlexSwitch { float: left; } .item-img {
width: 100%; } .item-tt {
line-height: 30px; } }}.card-list--gap{
padding-left: $cardGap / 2; padding-right: $cardGap / 2; .card-item{ margin-bottom: $cardGap; padding-left: $cardGap / 2; padding-right: $cardGap / 2; }}

float的主要思路为设置宽度n等分,然后间距由padding或嵌套的inner元素margin来实现。

这里考虑到flex与float的无缝切换,所以flex思路同样设置宽度的n等分,而不是单行的那种margin方法。

item相等,剩余间距平分

单行的demo为的第二个。这里使用的另一个mixin: line-equal-item,其实现思路是通过flex的justify-content: space-between;进行变化使用。

@mixin line-equal-item($lr: true, $children: li) {
display: flex; justify-content: space-between; @if $lr { &::before, &::after { content: ""; } }}

多行的话,跟上面的card实现差不多,具体的间隙计算公式可以参考

本篇文章主要是对中几个等分mixin的具体实践,简直是分分钟实现等分的节奏,当然这背后的mixin的定义是几经磨难,花费了大量心血的,感兴趣的可以开始试试了(如果你要兼容的安卓机很古老,连最老版本的flex box都不支持,那就只好干巴巴的看着了,转头去写float吧)。

出处:

转载于:https://www.cnblogs.com/Naomi-love/p/6178326.html

你可能感兴趣的文章
python 多进程和多线程的区别
查看>>
sigar
查看>>
iOS7自定义statusbar和navigationbar的若干问题
查看>>
[Locked] Wiggle Sort
查看>>
deque
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
两个表格中数据不用是一一对应关系--来筛选不同数据,或者相同数据
查看>>
Strict Standards: Only variables should be passed by reference
查看>>
hiho_offer收割18_题解报告_差第四题
查看>>
AngularJs表单验证
查看>>
静态方法是否属于线程安全
查看>>