我只是想知道是否可以通过对 CSS 代码应用变亮或变暗来改变 Less mixin 渐变的颜色?
这是较少的混合:
.css-gradient(@from: #20416A, @to: #3D69A5) {
background-color: @to;
background-image: -webkit-gradient(linear, left top, left bottom, from(@from), to(@to));
background-image: -webkit-linear-gradient(top, @from, @to);
background-image: -moz-linear-gradient(top, @from, @to);
background-image: -o-linear-gradient(top, @from, @to);
background-image: -ms-linear-gradient(top, @from, @to);
background-image: linear-gradient(top, @from, @to);
}
在 Less 文件中,我想做这样的事情:
#div {
width:100px;
height:100px;
.css-gradient (darken, 10%);
}
不知道这是否可能,或者是否有其他方法我应该这样做。