指南针:如何参考具有相同的文件夹名称不同的精灵?(Compass: How to reference

2019-09-23 12:06发布

假设我们有2个的内部精灵夹img标准指南针项目的文件夹中。 里面他们中的每一个,我们还有其他2个文件夹具有相同名称:

project/img/chapter1/icons
project/img/chapter2/icons

我们知道指南针使用最后一个文件夹的名称,以便参考精灵。 但是,在这种情况下,怎么可能一个叫他们中的每一个?

Answer 1:

不要使用魔法,使用助手:

$icons1-sprite: sprite-map("project/img/chapter1/icons/*.png");
$icons2-sprite: sprite-map("project/img/chapter2/icons/*.png");

在这里看到更多: http://compass-style.org/reference/compass/helpers/sprites/



文章来源: Compass: How to reference to different sprites with identical folder names?