Stylus多循环迭代器

时间:2014-02-12 10:00:49

标签: stylus

是否可以在Stylus中实现类似的功能?

for $i in 1..5 and $n in a b c d e
  .icon-{$i}:before{
    content: $n 
  }

1 个答案:

答案 0 :(得分:4)

回答你的问题:是的。


以下是:http://codepen.io/anon/pen/jIbdq

icon_contents = ( "a" "b" "c" "d" "e" )

for v, k in icon_contents
  .icon-{k+1}:before
    content v