D
D
Dmitry Suvorov2017-04-12 19:23:37
css
Dmitry Suvorov, 2017-04-12 19:23:37

How to make a loop in stylus with array iteration?

How to make the social variable in stylus set the facebook value from the colors array. I need to make links of different colors at the end of the page and would like to do it through a loop.

colors = {'facebook':#3b5998,'twitter':#26a6d1}
     @each social, social-color in colors
           .social-link__$social
                 background-color social-color
492262e5d9974755aa2d2ffa2f2b1847.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
F
Froggyweb, 2017-04-13
@Froggyweb

join(delim, args)
buf = ''
for arg, index in args
if index
buf += delim + arg
else
buf += arg
join(', ', foo bar baz)
// => "foo, bar, baz"

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question