18

我有一个 div 元素,比如宽度为 200 像素,高度为 200 像素。我需要一个小图像出现在 div 的右上角。一个人通常会怎么做

background: url(/images/imagepath.png) top right;

但是问题是,我正在从精灵加载图像,当我使用类似的东西时

background: url(/web/images/imagepath.png) -215px -759px  top right;

精灵似乎没有从正确的位置选择它。精灵的其他部分被加载。是否可以从精灵加载图像并使用背景位置属性。提前致谢...

4

5 回答 5

29

您需要以两种不同的方式指定元素位置和背景位置的坐标。

#yourimage {
  background-image: url(/web/images/imagepath.png);
  /* background coordinates */
  background-position: -215px -759px;

  /* element coordinates */
  position:absolute;
  left: 0;  /* 0px from the left */
  top:  0;  /* 0px from the top  */
}

使用background-position您指定背景坐标。对于元素的坐标,您需要设置leftright属性。

请记住,为了使用精灵,您的元素必须具有正确的大小。您用作背景的图像必须有足够的空间来覆盖元素的宽度和高度,而不是更多,否则您会从精灵图像中看到多个图像。

如果您想显示比您的元素更小的图像,则需要在大元素中放置一个较小的元素。

<div id="container">
  <div class="background"></div>
  my content here
</div>

然后在你的 CSS

#container {
  position:relative;
  width: 200px;  /* size of your big element */
  height: 200px;
}
#container .background {
  background: url(/web/images/imagepath.png) -215px -759px;
  width:  50px; /* width and height of the sprite image you want to display */
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
}
于 2011-09-16T12:08:53.880 回答
13

您可以:before像这样使用伪类:

.element:before {
   content:"";
   position:absolute;
   right:0;
   top:0;
   width:20px;
   height:20px;
   background: url(/web/images/imagepath.png) -215px -759px;
}

但这还没有得到很好的支持。

我的建议是在你的包装内制作另一个元素并将其定位绝对就像上面一样,:before但例如真实div

编辑

此处描述了在盒子角落使用精灵的另一种棘手方法。

于 2011-09-16T12:07:42.823 回答
2

如果你可以使用像 SCSS 这样的预处理器:

(更新以实际回答所提出的问题;另请参见实时示例

// ----------- only things you need to edit { ---------------
$sprite-size: 16px; // standard sprite tile size
$sprite-padding: 0px; // if you have padding between tiles
// ----------- } only things you need to edit ---------------

// basic sprite properties (extension-only class)
%sprite {
    width:$sprite-size; height:$sprite-size; // must restrict viewport, otherwise other sprites may "bleed through"
    // could set shared standard tilesheet `background-image: url(...)`
    // other standard styles, like `display:inline-block` or `position:absolute`
}

// helper for assigning positioning using friendlier numbers like "5" instead of doing the math
@mixin sprite-offset($xoffset:0, $yoffset:0, $increment:$sprite-size, $padding: $sprite-padding) {
    background-position: -($xoffset*($increment + $padding)) -($yoffset*($increment + $padding));
}

要从精灵中“浮动”背景,就像@jose-faeti 的回答表明你必须涉及一个占位符元素

<div class="float-bg">
    <div class="bg"></div>
    <p>Lorem ipsum dolor si...</p>
</div>

风格如下:

.float-bg .bg {
    @extend %sprite; // apply sizing properties
    background-image: url(...); // actually set the background tiles

    @include sprite-offset(4);

    // specific configuration per accepted answer
    position:absolute;
    top: 0;
    right: 0;
}

在我原来的答案中,要创建一个按钮列表,您可以:

// list out the styles names for each button 
$buttons: 'help', 'font', 'layerup', 'layerdown', 'transform', 'export', 'save', 'clear', 'move-left', 'move-right', 'move-up', 'move-down', 'png', 'jpg', 'svg', 'funky';

.btns > * { @extend %sprite; background-image:... } // apply sizing properties, bg

// autoassigns positioning
@for $i from 1 through length($buttons) {
    $btn: nth($buttons, $i);
    .btn-#{$btn} {
        // @extend .sprite;
        @include sprite-offset( $i - 1 );
    }
}

然后将从事以下工作

<ul class="btns">
    <li class="btn-help">...</li>
    <li class="btn-font">...</li>
    <li class="btn-save">...</li>
    <li class="btn-export">...</li>
    <li class="btn-etc">...</li>
    <li class="btn-etc">...</li>
</ul>
于 2013-01-14T09:21:26.267 回答
0

您指定一个top right或一个确切的像素位置,而不是两者。

此外,您不能加载图像精灵的一小部分以用作较大元素的背景。您必须在其中放置一个具有精灵大小的小元素。

于 2011-09-16T12:06:29.107 回答
0

使用背景原点而不是背景位置签出。

你只能指定一个背景位置,现在你有两个(-215px -759px)和(右上角)。

于 2011-09-16T12:09:29.813 回答