如何将以下用LESS编写的mixin转换为SASS?
.box_gradient (@from, @to) when (iscolor(@from)) and (iscolor(@to)) {
background-image: -webkit-gradient(linear, left top, left bottom, from(@from), to(@to)); /* Saf4+, Chrome */
background-image: -webkit-linear-gradient(top, @from, @to); /* Chrome 10+, Saf5.1+, iOS 5+ */
background-image: -moz-linear-gradient(top, @from, @to); /* FF3.6 */
background-image: -ms-linear-gradient(top, @from, @to); /* IE10 */
background-image: -o-linear-gradient(top, @from, @to); /* Opera 11.10+ */
background-image: linear-gradient(to bottom, @from, @to);
}
答案 0 :(得分:2)
这是在使用条件的SASS中完成的:
.box_gradient (@from, @to) {
@if (iscolor(@from) and iscolor(@to)) {
background-image: -webkit-gradient(linear, left top, left bottom, from(@from), to(@to)); /* Saf4+, Chrome */
background-image: -webkit-linear-gradient(top, @from, @to); /* Chrome 10+, Saf5.1+, iOS 5+ */
background-image: -moz-linear-gradient(top, @from, @to); /* FF3.6 */
background-image: -ms-linear-gradient(top, @from, @to); /* IE10 */
background-image: -o-linear-gradient(top, @from, @to); /* Opera 11.10+ */
background-image: linear-gradient(to bottom, @from, @to);
}
}