我正在尝试生成这个 css:
img.consults {
/*some css*/
}
img.coworkers {
/*some css*/
}
img.dashboard {
/*some css*/
}
使用这些较少的 CSS 代码。
@type1: "dashboard";
@type2: "consults";
@type3: "coworkers";
.loopingClass (@index) when (@index > 0) {
@ctype: "type@{index}";
@type: e(@@ctype);
img.@{type} {
/*some css*/
}
.loopingClass (@index - 1);
};
.loopingClass(3);
而不是所需的 css 代码。我得到三倍
img.dashboard {
/*some css*/
}
它应该开始生成img.consults
,因为它是倒计时,但我最终得到了三次img.dashboard
,这是第一次,所以应该最后生成。我无法理解它!我在这里做错了什么?