看一下这个例子:
@include font-face('Entypo', font-files('entypo.woff'));
.icon {
display: inline;
font: 400 40px/40px Entypo;
}
.icon-star {
@extend .icon;
&:after {
content: "\2605";
}
}
.icon-lightning {
@extend .icon;
&:after {
content: "\26A1";
}
}
我想尽可能做干,所以我想知道以下是否可行,如果可行,怎么办?
@include font-face('Entypo', font-files('entypo.woff'));
.icon {
display: inline;
font: 400 40px/40px Entypo;
}
$icons {
$star: "\2605";
$lightning: "\26A1";
}
@each $icon in $icons {
$key = $icon{key}; // ???
$value = $icon{value}; // ???
.icon-#{$key} {
@extend .icon;
&:after {
content: $value;
}
}
}
答案 0 :(得分:71)
Sass 3.3(2014年3月7日发布)现在允许您使用地图:
@include font-face('Entypo', font-files('entypo.woff'));
.icon {
display: inline;
font: 400 40px/40px Entypo;
}
$icons: (
star: "\2605",
lightning: "\26A1"
);
@each $key, $value in $icons {
.icon-#{$key} {
@extend .icon;
&:after {
content: $value;
}
}
}
答案 1 :(得分:29)
Sass目前不支持映射。你现在必须忍受列表清单。
$icons: star "\2605", lightning "\26A1";
@each $icon in $icons {
$key: nth($icon, 1);
$value: nth($icon, 2);
.icon-#{$key} {
@extend .icon;
&:after {
content: $value;
}
}
}