我发现这个由AirBnB使用 SASS 构建的灵活的单图像评分小部件。我想用 LESS 创建类似的东西。我知道我可以只写出 CSS,但我想用 LESS 动态地完成它。我的主要问题似乎是动态地将计数器_1
...添加_10
到类(.filled_1
... filled_10
)中。这在LESS中可能吗?
这是有效的 SASS 代码:
$starWidth: 44px;
$starOffset: 0 -43px;
$numStars: 5;
$steps: 2;
$total: $numStars * $steps;
@mixin filled($n: 0) {
width: ($starWidth / $steps) * $n;
}
.stars {
background: url(/images/sprite.png) repeat-x top left;
height: 43px;
&.empty {
background-position: $starOffset;
width: $numStars * $starWidth;
}
@for $i from 0 through ($total) {
&.filled_#{$i} { @include filled($i) }
}
}
这在 CSS 中变成了这样的代码:
.stars {
background: url(/images/sprite.png) repeat-x top left;
height: 43px; }
.stars.empty {
background-position: 0 -43px;
width: 220px; }
.stars.filled_0 {
width: 0px; }
.stars.filled_1 {
width: 22px; }
.stars.filled_2 {
width: 44px; }
.stars.filled_3 {
width: 66px; }
.stars.filled_4 {
width: 88px; }
.stars.filled_5 {
width: 110px; }
.stars.filled_5 {
width: 132px; }
.stars.filled_7 {
width: 154px; }
.stars.filled_8 {
width: 176px; }
.stars.filled_9 {
width: 198px; }
.stars.filled_10 {
width: 220px; }
如何执行相同的循环并包含在 LESS 而不是 CSS 中?
最终的 HTML 将如下所示:(其中 9 将显示 4.5 颗星)
<div class="stars empty">
<div class="stars filled_9">4.5</div>
</div>