此代碼:SCSS:代碼邊遠身體
//test.scss
@import "imageColor";
body {
$sourceFile: resources/icon/mask;
$targetFile: resources/compass/images/icon;
$color: red;
@include createMask($sourceFile, $targetPath, $color);
}
而這個代碼不工作:
//test:scss
@import "imageColor";
$sourceFile: resources/icon/mask;
$targetFile: resources/compass/images/icon;
$color: red;
$buttonResult: createMask($sourceFile, $targetPath, $color);
你知道爲什麼嗎?我需要將這些代碼發佈到身體{}之外。
如果沒有某種選擇器,您希望編譯什麼CSS? – KatieK
可能重複[在現有的Mixin上使用SASS函數?](http://stackoverflow.com/questions/15011527/using-sass-function-on-an-existing-mixin) – cimmanon