如何做到这一点生成CSS一格的东西.LESS混入?(How to do a .less mixin

2019-10-17 10:56发布

我想生成CSS选择器中选择.cX.rY为的像10×10的网格状的矩阵,但我没有看到我怎么能做到这一点少(我是很新,.LESS) 。 我用带点过,所以也许有一些内置的与限制; 我不知道肯定在这一方面。

@col-width: -24px;
@row-width: -24px;


.img-pos(@col, @row) {
    background-position:
       (((@col - 1) * @col-width) - 1)
       (((@row - 1) * @row-width) - 1);
}

.c2.r1 { .img-pos(2, 1); }
.c2.r2 { .img-pos(2, 2); }
.c2.r3 { .img-pos(2, 3); }
.c2.r4 { .img-pos(2, 4); }
.c2.r5 { .img-pos(2, 5); }
.c2.r6 { .img-pos(2, 6); }
.c2.r7 { .img-pos(2, 7); }
...


...
.cX.rY { .img-pos(2, 7); }

这可能吗? 如果是这样,怎么样?

Answer 1:

下面是一些代码,可以让您设定的最高行和列,以及可选择设置起始列和行数(默认为1),并有选择地设置为它们的类指标(默认为“C”和“R”) 。 它采用了循环技术在更短的自动生成代码。

更少的代码

@col-width: -24px;
@row-width: -24px;

.img-pos(@col, @row) {
    background-position:
       (((@col - 1) * @col-width) - 1)
       (((@row - 1) * @row-width) - 1);
}

.generateGridSelectors(@maxCols, @maxRows, @colStart: 1, @rowStart: 1, @colSel: "c", @rowSel: "r") when (@maxCols > 0) and (@colStart < @maxCols) and (@maxRows > 0) and (@rowStart < @maxRows) {

   @colStop: @maxCols + 1;
   @rowStop: @maxRows + 1;

   .makeGrid(@c: @colStart) when (@c < (@maxCols + 1)) {

     .setRow(@r: @rowStart) when (@r < (@maxRows + 1)) {     

     //generate selector and position
     (~".@{colSel}@{c}.@{rowSel}@{r}") {
     .img-pos(@c, @r);
     }

     //interate next row
     .setRow(@r + 1);
   }
     //end row loop
     .setRow(@rowStop) {}

     //start row loop
     .setRow();

     //iterate next column
     .makeGrid(@c + 1);

   }
   //end column loop
   .makeGrid(@colStop) {}

   //start grid loops
   .makeGrid();
} //end generateGridSelectors

//call your build (not sure how well it will handle real large numbers)
.generateGridSelectors(10, 10);

CSS输出

.c1.r1 {
  background-position: -1px -1px;
}
.c1.r2 {
  background-position: -1px -25px;
}
.c1.r3 {
  background-position: -1px -49px;
}
...
...
.c10.r8 {
  background-position: -217px -169px;
}
.c10.r9 {
  background-position: -217px -193px;
}
.c10.r10 {
  background-position: -217px -217px;
}


文章来源: How to do a .less mixin that generates something of a grid in css?