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

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

多个背景!

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

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

 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 

或者你也可以创build一个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 } } 

有一件事要认识到,第一个定义的背景图像是最上面的堆栈。 最后定义的图像将位于最下方。 这意味着,为了在图像背后有一个背景渐变,您需要:

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

我有一个实施,我需要采取这种技术更远一步,并想勾画我的工作。 下面的代码做同样的事情,但使用SASS,波本威士忌和图像精灵。

  @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照顾了跨浏览器的代码,现在我要声明的是每个button的精灵位置。 对于活动button和hover状态来说,扩展这个主体是很容易的。

你可以简单地input:

 background: linear-gradient( to bottom, rgba(0,0,0, 0), rgba(0,0,0, 100) ),url(..http://img.dovov.comimage.jpg); 

我的解决scheme

 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); 

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

  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> 

我用enjoycss做了一个例子

在这里输入图像描述

http://enjoycss.com/5q#background

在enjoycss编辑器中,您可以组合任意数量的背景,线性,重复线性,放射状,重复放射状,图像,颜色

你用GUI调整你的背景,并自动生成代码

代码在这里http://enjoycss.com/5q/code/0/background#background

我正在尝试做同样的事情。 虽然背景颜色和背景图像存在于一个对象内部的不同层上,也就是说它们可以共存,但是CSS渐变似乎可以select背景图像层。

从我所知道的情况来看,边界图像似乎比多个背景有更广泛的支持,所以也许这是另一种方法。

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

更新:多一点研究。 似乎佩特拉Gregorova有东西在这里工作 – > http://petragregorova.com/demos/css-gradient-and-bg-image-final.html

这是我创build的一个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, "..http://img.dovov.combackgrounds/community-background.jpg", left, top, #fafcfd, #f2f2f2); 

希望你们觉得这有帮助。

感谢@Gidgidonihahfind最初的解决scheme。

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

这里是我使用的现代mixin(学分: 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); } 

作为一个可靠的方法,你可以在css使用一个500×5像素的背景图片:

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

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

您也可以将其固定到屏幕的底部,并使其与初始渐变颜色相匹配。

如果您必须在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属性,并且在用分号closures属性值之前,有两个用逗号分隔的progid:[val]实例。 这是小提琴 。 另外请注意,当你看小提琴时,渐变超出了圆angular。 我没有修复其他不使用圆angular。 另外请注意,在src [IMAGE_URL]属性中使用相对path时,path是相对于文档页面而不是css文件(请参阅源文件)。

这篇文章( http://coding.smashingmagazine.com/2010/04/28/css3-solutions-for-internet-explorer/ )是什么导致我这个解决scheme。 这对IE特定的CSS3非常有用。

我想使背景图像,背景渐变组合的跨度button。

http://enjoycss.com/帮助完成我的工作任务。; 只有我必须删除一些自动生成的额外的CSS。 但是,真正好的网站build立你的临时工。

 #nav a.link-style span { background: url("..http://img.dovov.comorder-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("..http://img.dovov.comorder-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("..http://img.dovov.comorder-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; } 

我以这种方式解决了这个问题。 我在HTML中定义了Gradient,在Body中定义了背景图片

 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.comhttp://img.dovov.comstackoverflow.jpg"); height: 100% } 

对于我的响应式devise,箱子右侧(垂直手风琴)的箱子向下箭头,接受百分比作为位置。 最初的向下箭头是“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抱歉,不知道如何处理filter。