我有这个mixin来处理简单的CSS3线性渐变:
@mixin linear-gradient($from, $to, $dir: bottom, $dir-webkit: top, $ie-filters: false) {
background-color: $to;
background-image: -webkit-linear-gradient($dir-webkit, $from, $to);
background-image: linear-gradient(to $dir, $from, $to);
@if $ie-filters == true and $old-ie {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($from)}', endColorstr='#{ie-hex-str($to)}');
}
}
$dir
是“方向”的缩写。
如果我需要设为$ie-filters
“ true”,而无需更改$dir
/ $dir-webkit
默认值,那么我仍然需要重新声明它们,这显然不是很干且不是最佳选择,所以我必须这样做:
@include linear-gradient(#7a7a7a, #1a1a1a, bottom, top, true);
当我只想这样做时:
@include linear-gradient(#7a7a7a, #1a1a1a, true);
调用mixin时如何以这种方式跳过参数?
PS:如果您想知道该$dir-webkit
参数是否适用于Webkit,因为它仍然无法处理新的渐变语法(请参阅:http : //generatedcontent.org/post/37949105556/updateyourcss3- > 新的渐变语法),该方向需要与标准语法相反。
从SASS 3.1开始,您可以传递命名参数来做到这一点:
其余的将是默认设置。