如何在同一元素上组合背景图像和CSS3渐变?


1250

如何为我使用CSS3渐变background-color,然后应用background-image来应用某种透光的纹理?


9
注意:您还可以定位背景图片(居中15像素)或以这种方式设置其“重复”属性(示例适用于Firefox 3.6及更高版本)。some-class{background:url(“ ../ icon.png”)no-重复15px的中心,-moz线性梯度(中心顶,#FFFFFF,#DDDDDD);}
于连博鲁

SVGSVG + CSS可以分别用于创建平面纹理(噪声)或纹理渐变。
克林特·帕奇

Answers:


1544

多个背景!

body {
  background: #eb01a5;
  background-image: url("IMAGE_URL"); /* fallback */
  background-image: url("IMAGE_URL"), linear-gradient(#eb01a5, #d13531); /* W3C */
}

这两行是任何不执行渐变的浏览器的后备。请参阅以下有关仅堆叠IE <9的图像的注意事项。

  • 第1行设置了平坦的背景色。
  • 第2行设置了背景图片后备广告。

最后一行为可以处理这些背景的浏览器设置了背景图片和渐变。

  • 第3行适用于所有相对较新的浏览器。

几乎所有当前的浏览器都支持多个背景图像和CSS背景。有关浏览器支持,请参见http://caniuse.com/#feat=css-gradients。有关为什么不需要多个浏览器前缀的文章,请参见http://codepen.io/thebabydino/full/pjxVWp/

层堆叠

应当注意,第一个定义的图像将在堆栈中位于最顶层。在这种情况下,图像位于渐变的TOP上。

有关背景分层的更多信息,请参见http://www.w3.org/TR/css3-background/#layering

仅堆叠图像(声明中没有渐变)对于IE <9

IE9及更高版本可以以相同方式堆叠图像。您可以使用它为ie9创建一个渐变图像,尽管我个人不会。但是要注意的是,仅使用图像时,即<9将忽略后备声明,并且不显示任何图像。当包含渐变时,不会发生这种情况。在这种情况下,要使用单个后备图像,建议您将Paul Irish的出色的Conditional HTML元素与后备代码一起使用:

.lte9 #target{ background-image: url("IMAGE_URL"); }

背景位置,大小等

适用于单个图像的其他属性也可以用逗号分隔。如果仅提供1个值,它将应用于包括梯度在内的所有堆叠图像。background-size: 40px;会将图片和渐变都限制为40px的高度和宽度。但是,使用background-size: 40px, cover;将使图像变为40px,渐变将覆盖该元素。要将设置仅应用于一幅图像,请为另一幅图像设置默认值:background-position: 50%, 0 0;或为支持该图像的浏览器使用initialbackground-position: 50%, initial;

您也可以使用背景速记,但这会删除后备颜色和图像。

body{
    background: url("IMAGE_URL") no-repeat left top, linear-gradient(#eb01a5, #d13531);
}

背景位置,背景重复等也是如此。


36
感谢您的回答,关于如何然后background-position仅控制图像而不是渐变的任何想法?
adardesign 2010年

44
感谢您提供的出色信息。| @adardesign:使用背景速记。修改上面的示例,将是:background:url(IMAGE_URL)no-repeat left top,[适当的梯度];
RussellUresti 2010年

14
@adardesign:背景:url(“ ../ images / icon.png”)不重复15px中心,-moz-linear-gradient(center top,#FFFFFF,#DDDDDD); / *注意15px中心,它将添加一个15px的左填充并垂直居中对齐icon.png * /
JulienBérubé

2
在chrome atleast中,您可以使用逗号分隔值来控制多个图像的背景位置。像这样.. background-position:0px 8px,0px 0px ...
奥兰多

1
可能还值得注意的是,如果需要规定图像的其他属性的位置,则可以稍后在css规则中使用背景css属性。例如:背景重复:不重复;背景位置:中心;背景尺寸:1300px 1303px;
Phill Healey 2014年

86

如果您还想设置图像的背景位置,则可以使用以下方法:

background-color: #444; // fallback
background: url('PATH-TO-IMG') center center no-repeat; // fallback

background: url('PATH-TO-IMG') center center no-repeat, -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+
background: url('PATH-TO-IMG') center center no-repeat, -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
background: url('PATH-TO-IMG') center center no-repeat, -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+
background: url('PATH-TO-IMG') center center no-repeat, -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10
background: url('PATH-TO-IMG') center center no-repeat, linear-gradient(to bottom, @startColor, @endColor); // Standard, IE10

或者,您也可以创建LESS mixin(引导程序样式):

#gradient {
    .vertical-with-image(@startColor: #555, @endColor: #333, @image) {
        background-color: mix(@startColor, @endColor, 60%); // fallback
        background-image: @image; // fallback

        background: @image, -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+
        background: @image, -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
        background: @image, -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+
        background: @image, -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10
        background: @image, linear-gradient(to bottom, @startColor, @endColor); // Standard, IE10
    }
}

此页面上唯一对我有用的。我用它与普通的CSS。我尝试过的所有其他按钮实际上都是使用叠加渐变颜色隐藏图像。
Ska

@Ska-然后颠倒顺序.z-index在这里相反。参见stackoverflow.com/questions/14915542/…
弗兰克·康尼

46

要实现的一件事是,第一个定义的背景图像在堆栈中位于最顶层。最后定义的图像将是最底部的。这意味着,要使图像后面具有背景渐变,您需要:

  body {
    background-image: url("http://www.skrenta.com/images/stackoverflow.jpg"), linear-gradient(red, yellow);
    background-image: url("http://www.skrenta.com/images/stackoverflow.jpg"), -webkit-gradient(linear, left top, left bottom, from(red), to(yellow));
    background-image: url("http://www.skrenta.com/images/stackoverflow.jpg"), -moz-linear-gradient(top, red, yellow);
  }

您还可以定义图像的背景位置和背景尺寸。我整理了一篇博客文章,介绍了CSS3渐变可以做的一些有趣的事情


2
当W3C标准符号结尾时,答案会更好。
Volker E.

4
这段代码似乎无法正确配合。我们只能看到stackOverflow图片,而看不到其前后的背景图片。
或A.

我认为-webkit-gradient可能已过时stackoverflow.com/questions/10683364/…–
alpalalpal

该代码可能无法正常工作,但这是非常重要的一点。您可以重新排列背景元素的工作顺序,但是您必须考虑将它们分层。如果您想在图像上放置渐变,请先放上渐变,然后我们可能希望使用RGBa,以便可以看到后面的图像:background-image: linear-gradient(rgba(22,22,22,0), rgba(22,22,22,0.6)), url('image.jpg');
serraosays

34

您可以简单地输入:

background: linear-gradient(
    to bottom,
    rgba(0,0,0, 0),
    rgba(0,0,0, 100)
  ),url(../images/image.jpg);


1
这是唯一适用于我的解决方案(Firefox v57)。将linear-gradient()不得不来之前url(),和部分透明不得不被用于渐变的颜色,使用rgba()。其他任何东西都只使用列表中的第一个定义(就像第二个定义是后备,类似于font-family声明的工作方式)。
waldyrious

@waldyrious注意,用户希望在线性渐变上应用某种透光的纹理,因此应该首先出现图像,因为它应该在渐变上进行渲染
Alex Guerrero

通过半透明来合成图像和渐变应该具有相同的效果,而不管哪一个在前面。但是,您始终可以将渐变定义为具有一定的透明度,但是尚未半透明的图像就不能轻松/动态地转换为以这种方式使用。这就是为什么我发现通常将梯度放在首位的方法更有用的原因。
waldyrious

21

我总是使用以下代码来使其工作。有一些注意事项:

  1. 如果将图像URL放在渐变之前,则该图像将按预期显示在渐变上方

.background-gradient {
  background: url('http://trungk18.github.io/img/trungk18.png') no-repeat, -moz-linear-gradient(135deg, #6ec575 0, #3b8686 100%);
  background: url('http://trungk18.github.io/img/trungk18.png') no-repeat, -webkit-gradient(135deg, #6ec575 0, #3b8686 100%);
  background: url('http://trungk18.github.io/img/trungk18.png') no-repeat, -webkit-linear-gradient(135deg, #6ec575 0, #3b8686 100%);
  background: url('http://trungk18.github.io/img/trungk18.png') no-repeat, -o-linear-gradient(135deg, #6ec575 0, #3b8686 100%);
  background: url('http://trungk18.github.io/img/trungk18.png') no-repeat, -ms-linear-gradient(135deg, #6ec575 0, #3b8686 100%);
  background: url('http://trungk18.github.io/img/trungk18.png') no-repeat, linear-gradient(135deg, #6ec575 0, #3b8686 100%);
  height: 500px;
  width: 500px;
}
<div class="background-gradient"></div>

  1. 如果将渐变放置在图像URL之前,则该图像将显示渐变下方

.background-gradient {
  background: -moz-linear-gradient(135deg, #6ec575 0, #3b8686 100%), url('http://trungk18.github.io/img/trungk18.png') no-repeat;
  background: -webkit-gradient(135deg, #6ec575 0, #3b8686 100%), url('http://trungk18.github.io/img/trungk18.png') no-repeat;
  background: -webkit-linear-gradient(135deg, #6ec575 0, #3b8686 100%), url('http://trungk18.github.io/img/trungk18.png') no-repeat;
  background: -o-linear-gradient(135deg, #6ec575 0, #3b8686 100%), url('http://trungk18.github.io/img/trungk18.png') no-repeat;
  background: -ms-linear-gradient(135deg, #6ec575 0, #3b8686 100%), url('http://trungk18.github.io/img/trungk18.png') no-repeat;
  background: linear-gradient(135deg, #6ec575 0, #3b8686 100%), url('http://trungk18.github.io/img/trungk18.png') no-repeat;
  width: 500px;
  height: 500px;
}
<div class="background-gradient"></div>

这种技术与我们在此处描述的具有多个背景图像的方式相同


大!我将其加粗-> 如果您在图片网址之前放置渐变,则此图片将显示在渐变下方。
aldyahsn

19

我的解决方案:

background-image: url(IMAGE_URL); /* fallback */

background-image: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.7) 100%), url(IMAGE_URL);

3
在我的情况下,此解决方案适用于在图像顶部显示渐变,否则它将被图像隐藏。
vizFlux

15

我有一个实现,需要进一步推广这种技术,并想概述我的工作。下面的代码执行相同的操作,但使用SASS,Bourbon和图像精灵。

    @mixin sprite($position){
        @include background(url('image.png') no-repeat ($position), linear-gradient(#color1, #color2));
    }
    a.button-1{
        @include sprite(0 0);
    }
    a.button-2{
       @include sprite (0 -20px);  
    }
    a.button-2{
       @include sprite (0 -40px);  
    }

SASS和Bourbon负责跨浏览器代码,现在我需要声明的只是每个按钮的精灵位置。对于按钮的活动状态和悬停状态,可以很容易地扩展此主体。


5

如果您在下载背景图片时遇到奇怪的错误,请使用W3C链接检查器:https : //validator.w3.org/checklink

这是我使用的最新混合器(鸣谢:PSA:不要使用渐变发生器):

.buttonAkc
{
    .gradientBackground(@imageName: 'accept.png');
    background-repeat: no-repeat !important;
    background-position: center right, top left !important;
}

.buttonAkc:hover
{
    .gradientBackgroundHover('accept.png');
}

.gradientBackground(@startColor: #fdfdfd, @endColor: #d9d9db, @imageName)
{
    background-color: mix(@startColor, @endColor, 60%); // fallback
    background-image: url("@{img-folder}/@{imageName}?v=@{version}"); // fallback
    background: url("@{img-folder}/@{imageName}?v=@{version}") no-repeat scroll right center, -webkit-linear-gradient(top, @startColor 0%, @endColor 100%) no-repeat scroll left top; // Chrome 10-25, Safari 5.1-6
    background: url("@{img-folder}/@{imageName}?v=@{version}") no-repeat scroll right center, linear-gradient(to bottom, @startColor 0%, @endColor 100%) no-repeat scroll left top;
}

.gradientBackgroundHover(@imageName)
{
    .gradientBackground(#fdfdfd, #b5b6b9, @imageName);
}

4

这是我创建的MIXIN,用于处理人们可能喜欢使用的所有内容:

.background-gradient-and-image (@fallback, @imgUrl, @background-position-x, @background-position-y, @startColor, @endColor) {
    background: @fallback;
    background: url(@imgUrl) @background-position-x @background-position-y no-repeat; /* fallback */
    background: url(@imgUrl) @background-position-x @background-position-y no-repeat, -webkit-gradient(linear, left top, left bottom, from(@startColor) @background-position-x @background-position-y no-repeat, to(@endColor)); /* Saf4+, Chrome */
    background: url(@imgUrl) @background-position-x @background-position-y no-repeat, -webkit-linear-gradient(top, @startColor, @endColor); /* Chrome 10+, Saf5.1+ */
    background: url(@imgUrl) @background-position-x @background-position-y no-repeat,    -moz-linear-gradient(top, @startColor, @endColor); /* FF3.6+ */
    background: url(@imgUrl) @background-position-x @background-position-y no-repeat,     -ms-linear-gradient(top, @startColor, @endColor); /* IE10 */
    background: url(@imgUrl) @background-position-x @background-position-y no-repeat,      -o-linear-gradient(top, @startColor, @endColor); /* Opera 11.10+ */
    background: url(@imgUrl) @background-position-x @background-position-y no-repeat,         linear-gradient(top, @startColor, @endColor); /* W3C */
}

可以这样使用:

.background-gradient-and-image (#f3f3f3, "../images/backgrounds/community-background.jpg", left, top, #fafcfd, #f2f2f2);

希望对您有所帮助。

感谢@Gidgidonihah查找初始解决方案。


3

我试图做同样的事情。虽然背景颜色和背景图像存在于对象内的不同层上(这意味着它们可以共存),但CSS渐变似乎使背景图像层成为共同点。

据我所知,边框图像似乎比多种背景具有更广泛的支持,所以也许这是另一种方法。

http://articles.sitepoint.com/article/css3-border-images

更新:更多研究。似乎Petra Gregorova在这里有工作-> http://petragregorova.com/demos/css-gradient-and-bg-image-final.html


2

您可以使用多个背景:linear-gradient(); 电话,但尝试以下操作:

如果您希望将图像完全融合在一起,而由于单独的HTTP请求,元素看起来不会像单独加载一样,请使用此技术。在这里,我们要在同一个元素上同时加载两件事……

只需确保先将预渲染的32位透明png图像/纹理转换为base64字符串,然后在background-image css调用中使用它即可(在此示例中代替INSERTIMAGEBLOBHERE)。

我使用这项技术融合了晶圆外观的纹理和其他通过标准rgba透明度/线性梯度css规则序列化的图像数据。比分层处理多个艺术作品和浪费HTTP请求(对移动设备不利)更好。一切都加载到客户端,不需要文件操作,但是会增加文档字节大小。

 div.imgDiv   {
      background: linear-gradient(to right bottom, white, rgba(255,255,255,0.95), rgba(255,255,255,0.95), rgba(255,255,255,0.9), rgba(255,255,255,0.9), rgba(255,255,255,0.85), rgba(255,255,255,0.8) );
      background-image: url("data:image/png;base64,INSERTIMAGEBLOBHERE");
 }

0

如果必须在IE 9(HTML 5和HTML 4.01 Strict)中同时使用渐变和背景图像,则将以下属性声明添加到CSS类中,它应该可以解决问题:

filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#000000', endColorstr='#ff00ff'), progid:DXImageTransform.Microsoft.AlphaImageLoader(src='[IMAGE_URL]', sizingMethod='crop');

请注意,您使用了filter属性,并且progid:[val]在用分号关闭属性值之前,有两个实例用逗号分隔。这是小提琴。还要注意,当您观看小提琴时,渐变会超出圆角。我没有解决不使用圆角的其他问题。还要注意,在src [IMAGE_URL]属性使用相对路径时,该路径是相对于文档页面,而不是的CSS文件(参见)。

本文(http://coding.smashingmagazine.com/2010/04/28/css3-solutions-for-internet-explorer/)是导致我采用此解决方案的原因。对于特定于IE的CSS3很有帮助。


0

我想用背景图像,背景渐变组合制作跨度按钮。

http://enjoycss.com/帮助完成了我的工作任务。只有我必须删除一些自动生成的其他CSS。但是,这是一个非常不错的网站,可帮助您轻松完成工作。

#nav a.link-style span {
    background: url("../images/order-now-mobile.png"), -webkit-linear-gradient(0deg, rgba(190,20,27,1) 0, rgba(224,97,102,1) 51%, rgba(226,0,0,1) 100%);
    background: url("../images/order-now-mobile.png"), -moz-linear-gradient(90deg, rgba(190,20,27,1) 0, rgba(224,97,102,1) 51%, rgba(226,0,0,1) 100%);
    background: url("../images/order-now-mobile.png"), linear-gradient(90deg, rgba(170,31,0,1) 0, rgba(214,18,26,1) 51%, rgba(170,31,0,1) 100%);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-radius: 8px;
    border: 3px solid #b30a11;
}

0

我以这种方式解决了问题。我在HTML中定义渐变,在正文中定义背景图片

html {
  background-image: -webkit-gradient(linear, left bottom, right top, color-stop(0.31, rgb(227, 227, 227)), color-stop(0.66, rgb(199, 199, 199)), color-stop(0.83, rgb(184, 184, 184)));
  background-image: -moz-linear-gradient(left bottom, rgb(227, 227, 227) 31%, rgb(199, 199, 199) 66%, rgb(184, 184, 184) 83%);
  height: 100%
}
body {
  background: url("http://www.skrenta.com/images/stackoverflow.jpg");
  height: 100%
}


0

对于我的自适应设计,我在盒子右侧的垂直下拉框(垂直手风琴)接受了百分比作为位置。最初,向下箭头是“ position:absolute; right:13px;”。凭借97%的定位,它的魅力如下:

> background: #ffffff;
> background-image: url(PATH-TO-arrow_down.png); /*fall back - IE */
> background-position: 97% center; /*fall back - IE */
> background-repeat: no-repeat; /*fall back - IE */
> background-image: url(PATH-TO-arrow_down.png)  no-repeat  97%  center;  
> background: url(PATH-TO-arrow_down.png) no-repeat 97% center,  -moz-linear-gradient(top, #ffffff 1%, #eaeaea 100%); 
> background: url(PATH-TO-arrow_down.png) no-repeat 97% center,  -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ffffff), color-stop(100%,#eaeaea)); 
> background: url(PATH-TO-arrow_down.png) no-repeat 97% center,  -webkit-linear-gradient(top, #ffffff 1%,#eaeaea 100%); 
> background: url(PATH-TO-arrow_down.png) no-repeat 97% center,  -o-linear-gradient(top, #ffffff 1%,#eaeaea 100%);<br />
> filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0 ); 

PS对不起,不知道如何处理过滤器。


-1

作为一种确定的方法,您可以在使用时制作一个背景图像,例如500x5像素css

background-img:url(bg.jpg) fixed repeat-x;
background:#<xxxxxx>;

其中xxxxxx对应于与最终渐变颜色匹配的颜色。

您也可以将其修复到屏幕底部,并使它与初始渐变颜色匹配。


1
-1因为:一方面,“ background-img”不是有效的CSS规则。另外,这实际上并不能回答问题。
克里斯·布朗
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.