我有以下scss样式。我已将bg颜色添加为变量,并且工作正常。我还需要添加“ icons.png”作为变量。
.home {
@include themify($themes) {
background: url(images/icons.png) themed('bgcolor');
}
}
如何将“ icons.png”添加为真实的?喜欢
背景:以url(images / VARIABLENAME )为主题('bgcolor');
答案 0 :(得分:1)
您可以尝试一下。
$image: 'icons.png';
.home {
@include themify($themes) {
background: url(images/${$image}) themed('bgcolor');
}
}