- 授权协议: MIT
- 开发语言: HTML/CSS
- 操作系统: 未知
- 软件首页: https://github.com/outpunk/postcss-each
软件介绍
postcss-each 是一个 postcss 的插件,用来迭代数值。
迭代数值:
@each $icon in foo, bar, baz {
.icon-$(icon) { background: url('icons/$(icon).png');
}
}.icon-foo { background: url('icons/foo.png');
}.icon-bar { background: url('icons/bar.png');
}.icon-baz { background: url('icons/baz.png');
}通过索引值迭代数值:
@each $val, $i in foo, bar {
.icon-$(val) { background: url("$(val)_$(i).png");
}
}.icon-foo { background: url("foo_0.png");
}.icon-bar { background: url("bar_1.png");
}迭代多重数值:
@each $animal, $color in (puma, black), (sea-slug, blue) {
.$(animal)-icon { background-image: url('/images/$(animal).png'); border: 2px solid $color;
}
}.puma-icon { background-image: url('/images/puma.png'); border: 2px solid black;
}.sea-slug-icon { background-image: url('/images/sea-slug.png'); border: 2px solid blue;
}Probability and Computing
Michael Mitzenmacher、Eli Upfal / Cambridge University Press / 2005-01-31 / USD 66.00
Assuming only an elementary background in discrete mathematics, this textbook is an excellent introduction to the probabilistic techniques and paradigms used in the development of probabilistic algori......一起来看看 《Probability and Computing》 这本书的介绍吧!
