@each
@each
规则使为列表中的每个元素或映射中的每对元素生成样式或评估代码变得容易。它非常适合那些只有少量变化的重复样式。通常写成 @each <variable> in <expression> { ... }
,其中表达式 返回一个列表。该块依次为列表的每个元素评估,并将其分配给给定的变量 名称。
游乐场
SCSS 语法
$sizes: 40px, 50px, 80px;
@each $size in $sizes {
.icon-#{$size} {
font-size: $size;
height: $size;
width: $size;
}
}
游乐场
Sass 语法
$sizes: 40px, 50px, 80px
@each $size in $sizes
.icon-#{$size}
font-size: $size
height: $size
width: $size
CSS 输出
.icon-40px {
font-size: 40px;
height: 40px;
width: 40px;
}
.icon-50px {
font-size: 50px;
height: 50px;
width: 50px;
}
.icon-80px {
font-size: 80px;
height: 80px;
width: 80px;
}
使用映射使用映射永久链接
您也可以使用 @each
遍历映射中的每个键值对,方法是将其写成 @each <variable>, <variable> in <expression> { ... }
。键被分配给第一个变量名,元素被分配给 第二个。
游乐场
SCSS 语法
$icons: ("eye": "\f112", "start": "\f12e", "stop": "\f12f");
@each $name, $glyph in $icons {
.icon-#{$name}:before {
display: inline-block;
font-family: "Icon Font";
content: $glyph;
}
}
游乐场
Sass 语法
$icons: ("eye": "\f112", "start": "\f12e", "stop": "\f12f")
@each $name, $glyph in $icons
.icon-#{$name}:before
display: inline-block
font-family: "Icon Font"
content: $glyph
CSS 输出
.icon-eye:before {
display: inline-block;
font-family: "Icon Font";
content: "\f112";
}
.icon-start:before {
display: inline-block;
font-family: "Icon Font";
content: "\f12e";
}
.icon-stop:before {
display: inline-block;
font-family: "Icon Font";
content: "\f12f";
}
解构解构永久链接
如果您有一个列表列表,您可以使用 @each
自动将变量分配给来自内部列表的每个值,方法是将其写成 @each <variable...> in <expression> { ... }
。这被称为解构,因为变量与内部列表的结构相匹配。每个变量名都被分配给列表中对应位置的值,或者如果列表没有足够的值,则分配给null
。
游乐场
SCSS 语法
$icons:
"eye" "\f112" 12px,
"start" "\f12e" 16px,
"stop" "\f12f" 10px;
@each $name, $glyph, $size in $icons {
.icon-#{$name}:before {
display: inline-block;
font-family: "Icon Font";
content: $glyph;
font-size: $size;
}
}
游乐场
Sass 语法
$icons: "eye" "\f112" 12px, "start" "\f12e" 16px, "stop" "\f12f" 10px
@each $name, $glyph, $size in $icons
.icon-#{$name}:before
display: inline-block
font-family: "Icon Font"
content: $glyph
font-size: $size
CSS 输出
.icon-eye:before {
display: inline-block;
font-family: "Icon Font";
content: "\f112";
font-size: 12px;
}
.icon-start:before {
display: inline-block;
font-family: "Icon Font";
content: "\f12e";
font-size: 16px;
}
.icon-stop:before {
display: inline-block;
font-family: "Icon Font";
content: "\f12f";
font-size: 10px;
}
💡 有趣的事实
因为 @each
支持解构,并且映射被视为列表列表,所以 @each
对映射的支持在不需要专门支持映射的情况下起作用 。