How do I combine a background-image and CSS3 gradient on the same element?
我如何使用CSS3渐变来处理我的
多种背景!
1 2 3 4 5 | body { background: #eb01a5; background-image: url("IMAGE_URL"); /* fallback */ background-image: url("IMAGE_URL"), linear-gradient(#eb01a5, #d13531); /* W3C */ } |
这两行是任何不进行渐变的浏览器的回退。请参见下面的注释,仅用于堆叠图像。
- 第1行设置平面背景色。
- 第2行设置背景图像回退。
最后一行为可以处理它们的浏览器设置背景图像和渐变。
- 第3行适用于所有相对现代的浏览器。
几乎所有当前的浏览器都支持多个背景图像和CSS背景。有关浏览器支持,请参见http://caniuse.com/feat=css渐变。有关不需要多个浏览器前缀的原因,请参阅http://codepen.io/thebabydino/full/pjxvwp。/
层堆栈
应该注意的是,第一个定义的图像将是堆栈中最顶层的。在这种情况下,图像位于渐变的顶部。
有关背景分层的详细信息,请参见http://www.w3.org/tr/css3 background/分层。
仅对ie<9的图像进行叠加(声明中没有渐变)
IE9和更高版本可以以同样的方式堆叠图像。你可以用这个为IE9创建一个渐变图像,虽然我个人不这么认为。但是需要注意的是,当只使用图像时,ie<9会忽略fallback语句,不会显示任何图像。当包含渐变时,不会发生这种情况。在这种情况下,要使用单个回退图像,我建议使用Paul Irish出色的条件HTML元素和回退代码:
1 | .lte9 #target{ background-image: url("IMAGE_URL"); } |
背景位置、尺寸等。
适用于单个图像的其他属性也可以是逗号分隔的。如果只提供1个值,则该值将应用于所有叠加图像,包括渐变。
您也可以使用背景速记,但是这会删除回退颜色和图像。
1 2 3 | body{ background: url("IMAGE_URL") no-repeat left top, linear-gradient(#eb01a5, #d13531); } |
同样适用于背景位置、背景重复等。
如果还想为图像设置背景位置,则可以使用:
1 2 3 4 5 6 7 8 | 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 |
或者您也可以创建较少的混合(引导样式):
1 2 3 4 5 6 7 8 9 10 11 12 | #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 } } |
要认识到的一点是,第一个定义的背景图像是堆栈中的最顶层。最后定义的图像将是最底部的。这意味着,要在图像后面有背景渐变,您需要:
1 2 3 4 5 | 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渐变做一些有趣的事情的博客文章
您可以简单地键入:
1 2 3 4 5 | background: linear-gradient( to bottom, rgba(0,0,0, 0), rgba(0,0,0, 100) ),url(../images/image.jpg); |
我的解决方案:
1 2 3 | 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 2 3 4 5 6 7 8 9 10 11 12 | @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负责跨浏览器代码,现在我只需要声明每个按钮的sprite位置。对于按钮的活动状态和悬停状态,很容易扩展此原则。
我总是使用下面的代码使其工作。有一些注意事项:
1 2 3 4 5 6 7 8 9 10 | .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; } |
1 |
1 2 3 4 5 6 7 8 9 10 | .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; } |
1 |
这项技术与我们这里描述的多个背景图像相同。
下面是我创建的一个mixin,用于处理人们可能喜欢使用的所有内容:
1 2 3 4 5 6 7 8 9 10 | .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 */ } |
可以这样使用:
1 | .background-gradient-and-image (#f3f3f3,"../images/backgrounds/community-background.jpg", left, top, #fafcfd, #f2f2f2); |
希望你们觉得这有帮助。
感谢@gidgodonihah找到初始解决方案。
我也在做同样的事情。虽然背景色和背景图像存在于一个对象内的不同层上——这意味着它们可以共存——但CSS渐变似乎会与背景图像层共存。
据我所知,边界图像似乎比多个背景具有更广泛的支持,所以这可能是一种替代方法。
http://articles.sitepoint.com/article/css3-border-images网站
更新:更多的研究。似乎Petra Gregorova在这里工作了——>http://petra gregorova.com/demos/css-gradient-and-bg-image-final.html
如果下载背景图像时出现奇怪的错误,请使用W3C链接检查器:https://validator.w3.org/checklink
以下是我使用的现代混音器(学分:psa:不要使用渐变生成器):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | .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); } |
如果您希望将图像完全融合在一起,而不希望由于单独的HTTP请求而单独加载元素,那么请使用此技术。这里,我们在同时加载的同一个元素上加载两个东西……只需确保先将预渲染的32位透明PNG图像/纹理转换为base64字符串,然后在背景图像CSS调用中使用它。我使用这种技术将晶圆状纹理与标准的rgba透明度/线性渐变css规则融合在一起。比分层多个艺术和浪费HTTP请求更好,这对移动不利。
1 2 3 4 | 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"); } |
我想做的跨度按钮与背景图像,背景梯度组合。
http://enjoycss.com/帮助完成了我的工作任务。只有我必须删除一些自动生成的附加CSS。但这是一个非常好的网站,建立你的划痕工作。
1 2 3 4 5 6 7 8 9 | #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; } |
对于我的响应式设计,我的下拉框在框的右侧箭头(垂直手风琴),接受百分比作为位置。最初,向下箭头是"position:absolute;right:13px;"。在97%的定位下,它的魅力如下:
< BR>
1 2 3 4 5 6 7 8 9 10 | > 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 ); |
另外,对不起,不知道如何处理过滤器。
我用那种方法解决了这个问题。我在HTML中定义渐变,在正文中定义背景图像
1 2 3 4 5 6 7 8 9 | 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% } |
如果您必须让渐变和背景图像在IE 9中一起工作(HTML 5&HTML 4.01 Strict),请将以下属性声明添加到您的CSS类中,它应该做到这一点:
1 | filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#000000', endColorstr='#ff00ff'), progid:DXImageTransform.Microsoft.AlphaImageLoader(src='[IMAGE_URL]', sizingMethod='crop'); |
请注意,您使用了
这篇文章(http://coding.smashingmagazine.com/2010/04/28/css3-solutions-for-internet-explorer/)引导我找到了这个解决方案。它对IE特定的CSS3非常有用。
作为一种可靠的方法,您只需在您的
1 2 | background-img:url(bg.jpg) fixed repeat-x; background:#<xxxxxx>; |
其中,
你也可以把它固定在屏幕的底部,让它与初始的渐变色相匹配。