24

可以列出三种颜色:

$颜色列表:xyz;

然后通过循环使用这三种颜色并将它们添加到无序列表项中。

我想:

<li>row 1</li> (gets color x)
<li>row 2</li> (gets color y)
<li>row 3</li> (gets color z)
<li>row 4</li> (gets color x)

等等等等。

我曾尝试使用 @each ( http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#each-directive ) 函数,但它只是在第一次通过列表后停止应用颜色。我希望颜色保持循环,直到用完列表项来应用它们。

这可能与 sass 吗?

4

1 回答 1

48

如果纯 CSS 可以,那么 Sass 也可以。这将适用于任意数量的颜色:

http://codepen.io/cimmanon/pen/yoCDG

$colors: red, orange, yellow, green, blue, purple;

@for $i from 1 through length($colors) {
    li:nth-child(#{length($colors)}n+#{$i}) {
        background: nth($colors, $i)
    }
}

输出:

li:nth-child(6n+1) {
  background: red;
}

li:nth-child(6n+2) {
  background: orange;
}

li:nth-child(6n+3) {
  background: yellow;
}

li:nth-child(6n+4) {
  background: green;
}

li:nth-child(6n+5) {
  background: blue;
}

li:nth-child(6n+6) {
  background: purple;
}
于 2013-03-18T11:40:21.907 回答