中文
插值(Interpolation)
Stylus支持通过使用花括号({}
)包围表达式来插入值,其会变成标识符的一部分。例如,-webkit-{'border' + '-radius'}
等同于-webkit-border-radius
。
比较好的例子就是私有前缀属性扩展:
vendor(prop, args)
-webkit-{prop} args
-moz-{prop} args
{prop} args
border-radius()
vendor('border-radius', arguments)
box-shadow()
vendor('box-shadow', arguments)
button
border-radius 1px 2px / 3px 4px
vendor(prop, args)
-webkit-{prop} args
-moz-{prop} args
{prop} args
border-radius()
vendor('border-radius', arguments)
box-shadow()
vendor('box-shadow', arguments)
button
border-radius 1px 2px / 3px 4px
编译为:
button {
-webkit-border-radius: 1px 2px / 3px 4px;
-moz-border-radius: 1px 2px / 3px 4px;
border-radius: 1px 2px / 3px 4px;
}
button {
-webkit-border-radius: 1px 2px / 3px 4px;
-moz-border-radius: 1px 2px / 3px 4px;
border-radius: 1px 2px / 3px 4px;
}
选择器插值
插值也可以在选择器上起作用。例如,我们可以指定表格前5行的高度,如下:
table
for row in 1 2 3 4 5
tr:nth-child({row})
height: 10px * row
table
for row in 1 2 3 4 5
tr:nth-child({row})
height: 10px * row
等同的CSS:
table tr:nth-child(1) {
height: 10px;
}
table tr:nth-child(2) {
height: 20px;
}
table tr:nth-child(3) {
height: 30px;
}
table tr:nth-child(4) {
height: 40px;
}
table tr:nth-child(5) {
height: 50px;
}
table tr:nth-child(1) {
height: 10px;
}
table tr:nth-child(2) {
height: 20px;
}
table tr:nth-child(3) {
height: 30px;
}
table tr:nth-child(4) {
height: 40px;
}
table tr:nth-child(5) {
height: 50px;
}
您还可以通过构建字符串并将它们插入到位来将多个选择器放在一个变量中:
mySelectors = '#foo,#bar,.baz'
{mySelectors}
background: #000
mySelectors = '#foo,#bar,.baz'
{mySelectors}
background: #000
等同的CSS:
#foo,
#bar,
.baz {
background: #000;
}
#foo,
#bar,
.baz {
background: #000;
}