在我的项目中,我使用了 4 个颜色主题,并且通过此功能,我想自动分配变量中包含的特定颜色值,并且我还想使用变量的名称将其分配给类。
// the variables
@peach: 3399cc;
@green: ff00CC;
@orange: FF0033;
@yellow: EE0033;
@list: @peach, @green, @orange, @yellow;
//我的LESS函数
它使用变量值生成类名:ex:bsq3399cc 我希望类名与变量名相同:ex bsq-peach
我正在使用此处记录的 .for 函数。 https://github.com/seven-phases-max/less.curious/blob/master/articles/for-each.md
.bsq {
.for(@list); .-each(@name) {
&@{name} {
@color: color("#@{name}");
li& { background: @color; }
li& strong { background:lighten(@color, 10%); }
li& i { background:lighten(@color, 20%); }
}
}
}
.for mixin //
// ............................................................
// .for
.for(@i, @n) {.-each(@i)}
.for(@n) when (isnumber(@n)) {.for(1, @n)}
.for(@i, @n) when not (@i = @n) {
.for((@i + (@n - @i) / abs(@n - @i)), @n);
}
// ............................................................
// .for-each
.for(@array) when (default()) {.for-impl_(length(@array))}
.for-impl_(@i) when (@i > 1) {.for-impl_((@i - 1))}
.for-impl_(@i) when (@i > 0) {.-each(extract(@array, @i))}
我使用的 HTML 代码在这里。
<ul class="testing">
<li class="bsq3399cc"><strong>1</strong><i>10</i></li>
<li class="bsqff00CC"><strong>2</strong><i>20</i></li>
<li class="bsqFF0033"><strong>3</strong><i>30</i></li>
<li class="bsqEE0033"><strong>4</strong><i>40</i></li>
</ul>