Stylus - mixin - 变量
Stylus - mixin - variable
我想我可能完全误解了这一点。
但是假设我有这个重复的 css 代码。
.dot_one {
animation: dot_one 2s infinite linear;
}
.dot_two {
animation: dot_two 2s infinite linear;
}
.dot_three {
animation: dot_three 2s infinite linear;
}
难道我不能将它提取为函数吗? (但手写笔中的 mixin)
dot_mix(myVar)
animation: myVar 2s infinite linear;
dot_mix(.dot_one)
我认为这是你之后的语法
dot_mix(sel)
{sel}
animation: dot_one 2s infinite linear
dot_mix('.dot_one')
dot_mix('.dot_two')
从这里获得http://www.miniarray.com/use-variables-for-selectors-in-stylus/
我想我可能完全误解了这一点。
但是假设我有这个重复的 css 代码。
.dot_one {
animation: dot_one 2s infinite linear;
}
.dot_two {
animation: dot_two 2s infinite linear;
}
.dot_three {
animation: dot_three 2s infinite linear;
}
难道我不能将它提取为函数吗? (但手写笔中的 mixin)
dot_mix(myVar)
animation: myVar 2s infinite linear;
dot_mix(.dot_one)
我认为这是你之后的语法
dot_mix(sel)
{sel}
animation: dot_one 2s infinite linear
dot_mix('.dot_one')
dot_mix('.dot_two')
从这里获得http://www.miniarray.com/use-variables-for-selectors-in-stylus/