如何将URL图像添加为scss变量

时间:2019-05-16 12:24:59

标签: css sass scss-mixins

我有以下scss样式。我已将bg颜色添加为变量,并且工作正常。我还需要添加“ icons.png”作为变量。

 .home {
           @include themify($themes) {
               background: url(images/icons.png) themed('bgcolor');
           }
    }

如何将“ icons.png”添加为真实的?喜欢

背景:以url(images / VARIABLENAME )为主题('bgcolor');

1 个答案:

答案 0 :(得分:1)

您可以尝试一下。

$image: 'icons.png';  
.home {
       @include themify($themes) {
           background: url(images/${$image}) themed('bgcolor');
       }
}