LESS使用模式匹配,所以你是正确的,它可能需要两个 mixin(一个需要一站,另一个需要两站)。下面的代码演示了这一点(它可能会进一步减少,但这使发生的事情变得相当明显)。请注意“名称”是如何相同的(在我的情况下是setTopGradient
),但变量的数量是不同的。
更正:您的问题显示您使用小数作为止损点,但根据此页面webkit
,这不是必需的。所以我将以下代码更新为百分比。
较少的
.setTopGradient(@startClr, @endClr, @st1Clr, @st1Pos) {
background: -moz-linear-gradient(
top,
@startClr,
@st1Clr @st1Pos,
@endClr
);
background: -webkit-linear-gradient(
linear,
left top,
left bottom,
from(@startClr),
to(@endClr),
color-stop(@st1Pos, @st1Clr)
);
}
.setTopGradient(@startClr, @endClr, @st1Clr, @st1Pos, @st2Clr, @st2Pos) {
background: -moz-linear-gradient(
top,
@startClr,
@st1Clr @st1Pos,
@st2Clr @st2Pos,
@endClr
);
background: -webkit-linear-gradient(
linear,
left top,
left bottom,
from(@startClr),
to(@endClr),
color-stop(@st1Pos, @st1Clr),
color-stop(@st2Pos, @st2Clr)
);
}
.someClass1 {
.setTopGradient(white, #d8d8d8, #e5e5e5, 88%);
}
.someClass2 {
.setTopGradient(#8b8b8b, #bfbfbf, #a9a9a9, 10%, #bdbdbd, 30%);
}
CSS 输出
.someClass1 {
background: -moz-linear-gradient(top, #ffffff, #e5e5e5 88%, #d8d8d8);
background: -webkit-linear-gradient(linear, left top, left bottom, from(#ffffff), to(#d8d8d8), color-stop(88%, #e5e5e5));
}
.someClass2 {
background: -moz-linear-gradient(top, #8b8b8b, #a9a9a9 10%, #bdbdbd 30%, #bfbfbf);
background: -webkit-linear-gradient(linear, left top, left bottom, from(#8b8b8b), to(#bfbfbf), color-stop(10%, #a9a9a9), color-stop(30%, #bdbdbd));
}