我如何使用 CSS3 渐变background-color
,然后应用 abackground-image
来应用某种光透明纹理?
19 回答
多种背景!
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/
层堆栈
应该注意的是,第一个定义的图像将位于堆栈的最顶部。在这种情况下,图像位于渐变的顶部。
有关背景分层的更多信息,请参见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;
或支持它的浏览器使用initial
:background-position: 50%, initial;
您也可以使用背景速记,但这会删除备用颜色和图像。
body{
background: url("IMAGE_URL") no-repeat left top, linear-gradient(#eb01a5, #d13531);
}
这同样适用于背景位置、背景重复等。
如果您还想为图像设置背景位置,则可以使用:
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
}
}
要意识到的一件事是,第一个定义的背景图像在堆栈中是最顶层的。最后定义的图像将位于最底部。这意味着,要在图像后面有背景渐变,您需要:
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 渐变做的一些有趣的事情
你可以简单地输入:
background: linear-gradient(
to bottom,
rgba(0,0,0, 0),
rgba(0,0,0, 100)
),url(../images/image.jpg);
我总是使用以下代码使其工作。有一些注意事项:
- 如果您将图像 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>
- 如果您在图片 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>
这种技术与我们有多个背景图像相同,如此处所述
我的解决方案:
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);
我有一个实现,我需要将这项技术更进一步,并想概述我的工作。下面的代码做同样的事情,但使用 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 负责跨浏览器代码,现在我要声明的是每个按钮的精灵位置。为按钮活动和悬停状态扩展此原理很容易。
如果您在下载背景图片时遇到奇怪的错误,请使用 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);
}
这是我创建的一个 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 找到了最初的解决方案。
我试图做同样的事情。虽然 background-color 和 background-image 存在于对象内的不同层上——这意味着它们可以共存——CSS 渐变似乎与 background-image 层共同选择。
据我所知,border-image 似乎比多个背景具有更广泛的支持,所以也许这是一种替代方法。
http://articles.sitepoint.com/article/css3-border-images
更新:更多的研究。似乎 Petra Gregorova 在这里工作-> http://petragregorova.com/demos/css-gradient-and-bg-image-final.html
使用background-blend-mode
和rgba
混合背景图像和颜色
这就是你需要的:
.myblendedbg {
background-image: url("some_image.png");
background-color: rgba(0, 0, 0, 0.85); /* use rgba for fine adjustments */
background-blend-mode: multiply;
}
如果您调整颜色值的 alpha 值(在示例中为 at ),您可以控制透明度。rgba
.85
此外,background-blend-mode
您还可以使用其他值来获得一些真正有创意的结果。
注意:background-blend-mode: color;
在 Firefox 上失败,而multiply
在所有现代浏览器上都可以使用
您可以使用多个背景: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");
}
如果您必须让渐变和背景图像在 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 非常有帮助。
我以这种方式解决问题。我在 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%
}
如果你想要一个在中心有一个背景图像的渐变,你可以用这样的一行代码来做到这一点:
body {
background: url(logo.png) no-repeat fixed center center, linear-gradient(#00467f, #a5cc82) fixed;
}
我想用背景图像、背景渐变组合制作跨度按钮。
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;
}
对于我的响应式设计,我在框右侧(垂直手风琴)的下拉框向下箭头,接受百分比作为位置。最初向下箭头是“位置:绝对;右: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对不起,不知道如何处理过滤器。
我希望这足以跨浏览器:
(从渐变编辑器修改基础,在图像顶部使用黑色到透明垂直渐变)
background-image: url('YOURIMAGE.JPG');
background-image: -moz-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%),url('YOURIMAGE.JPG'); /* FF3.6-15 */
background-image: -webkit-linear-gradient(left, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%),url('YOURIMAGE.JPG'); /* Chrome10-25,Safari5.1-6 */
background-image: linear-gradient(to right, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%),url('YOURIMAGE.JPG'); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=1 ), progid:DXImageTransform.Microsoft.AlphaImageLoader(src='YOURIMAGE.JPG', sizingMethod='crop'); /* IE6-9 */
作为一种可靠的方法,您可以在使用中制作一个 500x5 像素的背景图像css
:
background-img:url(bg.jpg) fixed repeat-x;
background:#<xxxxxx>;
wherexxxxxx
对应于与最终渐变颜色匹配的颜色。
您也可以将其固定到屏幕底部并使其与初始渐变颜色匹配。