SASS学习笔记

2020-01-14  本文已影响0人  GreenWang

Sass是一门CSS编译语言,为CSS赋予了可编程的能力,允许我们使用变量、函数、mixin等手段来进行模块化的CSS开发,减少了大量冗余的代码工作量。

1. 语法

Sass支持两种语法

1.1 scss

SCSS语法使用.scss后缀,SCSS基本上是CSS的超集,也就是绝大多数的CSS语法都可以直接使用。因为与CSS语法相似,这是学习SASS最简单也最流行的一种语法。

@mixin button-base() {
  @include typography(button);
  @include ripple-surface;
  @include ripple-radius-bounded;

  display: inline-flex;
  position: relative;
  height: $button-height;
  border: none;
  vertical-align: middle;

  &:hover { cursor: pointer; }

  &:disabled {
    color: $mdc-button-disabled-ink-color;
    cursor: default;
    pointer-events: none;
  }
}

1.2 sass 缩进语法

缩进语法是sass的原生语法,因此使用.sass作为文件后缀。这种语法用缩进表示花括号,空号表示花括号的结束。

@mixin button-base()
  @include typography(button)
  @include ripple-surface
  @include ripple-radius-bounded

  display: inline-flex
  position: relative
  height: $button-height
  border: none
  vertical-align: middle

  &:hover
    cursor: pointer

  &:disabled
    color: $mdc-button-disabled-ink-color
    cursor: default
    pointer-events: none

2. 文档构成

像大多数CSS文件一样,Sass文件主要由样式规则及规则的属性构成,除此之外还包括一些独有的特性。

作者主要用scss语法,因此本文后续介绍中只考虑scss语法,使用sass语法的请自行转换。

2.1 样式规则

.item {
    color: green;
}

2.2 变量声明

$bg-color: #fff;

2.3 @if语句

@if语法

@if expression {
    //CSS codes here
}

具体事例

p {
    @if $bg-color { border:1px solid; }
    @if $box-width > 100 { border: none; }
}

还可以接着很多@else

$type: monster;
p {
  @if $type == ocean {
    color: blue;
  } @else if $type == matador {
    color: red;
  } @else if $type == monster {
    color: green;
  } @else {
    color: black;
  }
}

2.4 @each语句

语法

@each $var in <list or map>

具体示例

@each $color in red, green, yellow, blue {
    .p_#{$color} {
        background-color: #{$color}
    }
}

列表和映射还可以是二维的,如下所示

@each $color, $border in (aqua, dotted),
                        (red, solid),
                        (green, double){
  .#{$color} {
    background-color : $color;
    border: $border;
  }
}

也可以使用映射的方式

@each $header, $color in (h1: red, h2: green, h3: blue) {
  #{$header} {
    color: $color;
  }
}

2.5 @error@warn@debug

和传统的编程语言一样,在编写sass中的mixin,function过程中,如果有变量没有按照期望的格式传递,我们还可以增加错误处理逻辑。

@mixin reflexive-position($property, $value) {
  @if $property != left and $property != right {
    @error "Property #{$property} must be either left or right.";
  }

  $left-value: if($property == right, initial, $value);
  $right-value: if($property == right, $value, initial);

  left: $left-value;
  right: $right-value;
  [dir=rtl] & {
    left: $right-value;
    right: $left-value;
  }
}

.sidebar {
  @include reflexive-position(top, 12px);
  //       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  // Error: Property top must be either left or right.
}

和@error类似的作用,但是@warn并不会停止sass的编译。

$known-prefixes: webkit, moz, ms, o;

@mixin prefix($property, $value, $prefixes) {
  @each $prefix in $prefixes {
    @if not index($known-prefixes, $prefix) {
      @warn "Unknown prefix #{$prefix}.";
    }

    -#{$prefix}-#{$property}: $value;
  }
  #{$property}: $value;
}

.tilt {
  // Oops, we typo'd "webkit" as "wekbit"!
  @include prefix(transform, rotate(15deg), wekbit ms);
}

@debug我想就不用再细说了,这个语句是为了方便我们调试,将一些变量打印出来供分析运行态的。

2.6 CSS语句

包括以下几种:

2.7 一些顶级的声明

3. Expressions

类似于其他语言中的变量类型或操作符的定义。

SASS中包括以下变量类型

SASS中的操作符包括:

4. 注释的写法

注释分两种//开头的注释不会编译到CSS文件中,/**/形式的注释会编译到CSS中。
单行注释以//开头,/**/格式支持多行注释。

// This comment won't be included in the CSS.

/* But this comment will, except in compressed mode. */

/* It can also contain interpolation:
 * 1 + 1 = #{1 + 1} */

/*! This comment will be included even in compressed mode. */

p /* Multi-line comments can be written anywhere
   * whitespace is allowed. */ .sans {
  font: Helvetica, // So can single-line commments.
        sans-serif;
}

文档注释

如果使用sass写一些基本的库,可以对mixin,functions,variables等编写文档注释,通过SassDoc工具可以提取文档。

文档注释以///开头,支持Markdown语法格式。

参考资料

  1. SASS Document
  2. scss-@if指令
  3. SCSS @if() 指令
  4. scss-@each指令
  5. sass @error
上一篇下一篇

猜你喜欢

热点阅读