Skip to content

CSS 原子化设计

Published: at 05:51 PMSuggest Changes

今天在对项目进行统一化配置,期望实现下面这样的功能

有点像 bootstrap 框架那样,灵感也是从 mui 那儿拿到的。

自己在群里问了一圈后,利用 sass 的 for 循环先手写了一波,然后直接用 common-mt1 就可以设置 margin-top: 4px 的样式,代码如下。

.common {
  &-m {
    &t {
      @for $i from 1 through 16 {
        &#{$i} {
          margin-top: 4px * $i;
        }
      }
    }
    &b {
      @for $i from 1 through 16 {
        &#{$i} {
          margin-bottom: 4px * $i;
        }
      }
    }
    &l {
      @for $i from 1 through 16 {
        &#{$i} {
          margin-left: 4px * $i;
        }
      }
    }
    &r {
      @for $i from 1 through 16 {
        &#{$i} {
          margin-right: 4px * $i;
        }
      }
    }
    &x {
      @for $i from 1 through 16 {
        &#{$i} {
          margin: 0 4px * $i;
        }
      }
    }
    &y {
      @for $i from 1 through 16 {
        &#{$i} {
          margin: 4px * $i 0;
        }
      }
    }
    &a {
      @for $i from 1 through 16 {
        &#{$i} {
          margin: 4px * $i;
        }
      }
    }
  }
}

可以拿来直接用的成熟方案 - Windi CSS

然后返回群里一看,还真有更好的方案:Windi CSS

除了这个还有个 tailwindcss

更优雅的写法

群友还推荐了 uviewui,里面有更优雅的写法

我一看就喜欢上了,源码在这:common.scss

// 定义字体 (px) 单位,小于 20 都为 px 单位字体
@for $i from 9 to 20 {
  .u-font-#{$i} {
    font-size: $i + px;
  }
}

// 定义字体 (rpx) 单位,大于或等于 20 的都为 rpx 单位字体
@for $i from 20 through 40 {
  .u-font-#{$i} {
    font-size: $i + rpx;
  }
}

// 定义内外边距,历遍 1-80
@for $i from 0 through 80 {
  // 只要双数和能被 5 除尽的数
  @if $i % 2 == 0 or $i % 5 == 0 {
    // 得出:u-margin-30 或者 u-m-30
    .u-margin-#{$i},
    .u-m-#{$i} {
      margin: $i + rpx !important;
    }

    // 得出:u-padding-30 或者 u-p-30
    .u-padding-#{$i},
    .u-p-#{$i} {
      padding: $i + rpx !important;
    }

    @each $short, $long in l left, t top, r right, b bottom {
      // 缩写版,结果如:u-m-l-30
      // 定义外边距
      .u-m-#{$short}-#{$i} {
        margin-#{$long}: $i + rpx !important;
      }

      // 定义内边距
      .u-p-#{$short}-#{$i} {
        padding-#{$long}: $i + rpx !important;
      }

      // 完整版,结果如:u-margin-left-30
      // 定义外边距
      .u-margin-#{$long}-#{$i} {
        margin-#{$long}: $i + rpx !important;
      }

      // 定义内边距
      .u-padding-#{$long}-#{$i} {
        padding-#{$long}: $i + rpx !important;
      }
    }
  }
}

// 重置 nvue 的默认关于 flex 的样式
.u-reset-nvue {
  flex-direction: row;
  align-items: center;
}

后记

感谢群友的分享

PanDa - Windi CSS 阿银 - uviewui 观察者 - tailwindcss


Previous Post
CSS `text-align: center` 图片居中失效的解决方法
Next Post
滚动条导致的布局问题