我有一个 mixin,它接受我想传递给变量的参数。
@mixin my_mixin($arg) {
background-color: $state-#{$arg}-text;
}
目前在 SASS 中无法对变量名进行插值。这是讨论此问题的问题https://github.com/nex3/sass/issues/626
但是,您可以使用占位符的插值:
%my-dark-styles {
background-color: #000;
}
%my-white-styles {
background-color: #FFF;
}
@mixin my_mixin($arg) {
@extend %my-#{$arg}-styles;
}
.header {
@include my_mixin("dark");
}
.footer {
@include my_mixin("white");
}
这编译为:
.header {
background-color: #000; }
.footer {
background-color: #FFF; }
从 Sass 3.3 开始,您还可以使用地图 http://blog.sass-lang.com/posts/184094-sass-33-is-released
这是一个例子:
$state-light-text : #FFFFFF;
$state-dark-text : #000000;
$color-map: ( //create a array to support the two colors light and dark
light: $state-light-text,
dark: $state-dark-text
);
@each $color-key, $color-var in $color-map {
.myclass--#{$color-key} { //will generate .myclass--light .myclass--dark
background-color: $color-var; // equal $state-light-text or $state-dark-text
}
}
它将编译为:
.myclass--light {
background-color: #FFFFFF;
}
.myclass--dark {
background-color: #000000;
}