0
是否可以傳遞參數列表以及另一個單獨的參數。在列表和變量中傳遞混合
喜歡的東西
@mixin cols($width...,$gutter) {
....
}
@include cols((4,4,4),2%);
是否可以傳遞參數列表以及另一個單獨的參數。在列表和變量中傳遞混合
喜歡的東西
@mixin cols($width...,$gutter) {
....
}
@include cols((4,4,4),2%);
我想是的,我們能做到that.non列表參數應列表前/數組參數
檢查這個片段
@mixin box-shadow($color,$shadows...) {
-moz-box-shadow: $shadows;
-webkit-box-shadow: $shadows;
box-shadow: $shadows;
background:$color;
}
.shadows {
@include box-shadow('red',0px 4px 5px #666, 2px 6px 10px #999);
}
http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#variable_arguments
希望這有助於
謝謝,這對你的box-shadow mixin有效,但我需要用逗號發送參數列表,因爲我使用了@for循環來應用值 – user2882335
所以你希望我使用for循環? – Geeky
它以任何方式幫助你...如果考慮接受答案 – Geeky