指南针:生成精灵,加上精灵中每个图像的宽度/高度

时间:2011-08-13 20:16:20

标签: css css-sprites compass-sass sass

我正在使用Compass(一个CSS框架)来生成精灵图像。 它可以工作,但指南针只为每个图像生成一个背景位置。

是否可以获得精灵中每个图像的宽度和高度?

这是我的代码:

@import "ico/*.png";
@include all-ico-sprites;

生成的代码:

.ico-sprite, .ico-bag-blue, .ico-bag-black {
  background: url('../images/ico-s78b1a1919b.png') no-repeat;
}

.ico-bag-blue {
  background-position: 0 0;
}

.ico-bag-black {
  background-position: 0 -24px;
}

我想要的代码:

.ico-sprite, .ico-bag-blue, .ico-bag-black {
  background: url('../images/ico-s78b1a1919b.png') no-repeat;
}

.ico-bag-blue {
  background-position: 0 0;
  width:40px;
  height:24px;
}

.ico-bag-black {
  background-position: 0 -24px;
  width:44px;
  height:30px;
}

任何人都可以向我解释我是如何做到的吗? 感谢。

2 个答案:

答案 0 :(得分:74)

这有效:

@include all-<map>-sprites(true);

但您可能想要考虑使用配置变量的文档化方法:
http://compass-style.org/help/tutorials/spriting/

您只需在导入前指定config变量。在你的情况下:

$ico-sprite-dimensions: true;
@import "ico/*png".
@include all-ico-sprites;

向所有包含作品发送true,但由于它没有记录,似乎配置变量是首选方法。

除尺寸外,这些是可用的其他配置变量:

$<map>-spacing           // space in px around the sprites
$<map>-repeat            // whether to repeat the sprite bg
$<map>-position          // the x position of the sprite on the map
$<map>-sprite-base-class // the base class (default ".<map>-sprite")
$<map>-clean-up          // whether to delete old image maps
$<map>-<sprite>-spacing  // spacing, for individual sprites
$<map>-<sprite>-repeat   // repeat, for individual sprites
$<map>-<sprite>-position // position, for individual sprites

答案 1 :(得分:7)

我找到了解决方案。 只传递true作为第二个参数:

@include all-ico-sprites(true);

很简单。