循环扩展,广泛的数据,更少

时间:2018-04-24 12:53:21

标签: css less

为什么我看不到值height --0-5

省略了一个值。 有谁知道如何解决这个问题?

提前致谢!

代码:

.loop(5);
.loop (@n, @j: @n) when (@j >= -2) {
  .loop(@j, @j - 1/2);
  @i: floor(@j);
  @f: floor(mod(@j, 1)*10);

  .height-@{i}-@{f} when (@f > 0) {
    height: 1% * @j;
  }
  .height-@{i} when (@f = 0) {
    height: 1% * @j;
  }
  .height-@{i}@{f} when (@f < 0) {
    height: 1% * @j;
  }
}

0 个答案:

没有答案