剪辑/裁剪背景图像与CSS

时间:2011-10-15 10:09:10

标签: css css-sprites

我有这个HTML:

<div id="graphic">lorem ipsum</div>

使用这个CSS:

#graphic { background-image: url(image.jpg); width: 200px; height: 100px;}

我正在应用的背景图像是200x100像素,但我只想显示200x50像素的背景图像的裁剪部分。

background-clip似乎不是正确的CSS属性。我可以用什么呢?

不应该使用

background-position,因为我在精灵上下文中使用上面的CSS,其中我想要显示的图像部分小于定义CSS的元素。

3 个答案:

答案 0 :(得分:91)

您可以将图形放在具有自己的维度上下文的伪元素中:

#graphic {
  position: relative;
  width: 200px;
  height: 100px;
}
#graphic::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 200px;
  height: 50px;
  background-image: url(image.jpg);
}

#graphic {
    width: 200px;
    height: 100px;
    position: relative;
}
#graphic::before {
    content: '';
    
    position: absolute;
    width: 200px;
    height: 50px;
    z-index: -1;
    
    background-image: url(http://placehold.it/500x500/); /* Image is 500px by 500px, but only 200px by 50px is showing. */
}
<div id="graphic">lorem ipsum</div>

浏览器支持很好,但if you need to support IE8, use a single colon :before. IE在此之前的版本中不支持任何语法。

答案 1 :(得分:7)

你可以这样写:

#graphic { 
 background-image: url(image.jpg); 
 background-position: 0 -50px; 
 width: 200px; 
 height: 100px;
}

答案 2 :(得分:3)

另一种选择是使用linear-gradient()来掩盖图像的边缘。请注意,这是一个愚蠢的解决方案,所以我不会花太多精力来解释它......

&#13;
&#13;
.flair {
  min-width: 50px; /* width larger than sprite */
  text-indent: 60px;
  height: 25px;
  display: inline-block;
  background:
    linear-gradient(#F00, #F00) 50px 0/999px 1px repeat-y,
    url('https://championmains.github.io/dynamicflairs/riven/spritesheet.png') #F00;
}

.flair-classic {
  background-position: 50px 0, 0 -25px;
}

.flair-r2 {
  background-position: 50px 0, -50px -175px;
}

.flair-smite {
  text-indent: 35px;
  background-position: 25px 0, -50px -25px;
}
&#13;
<img src="https://championmains.github.io/dynamicflairs/riven/spritesheet.png" alt="spritesheet" /><br />
<br />
<span class="flair flair-classic">classic sprite</span><br /><br />
<span class="flair flair-r2">r2 sprite</span><br /><br />
<span class="flair flair-smite">smite sprite</span><br /><br />
&#13;
&#13;
&#13;

我在此页面上使用此方法:https://championmains.github.io/dynamicflairs/riven/并且无法使用::before::after元素,因为我已经将它们用于另一个破解。