我使用的代码类似于以下代码:
<div style="opacity:0.4; background-image:url(...);">
<div style="opacity:1.0;">
Text
</div>
</div>
我希望这样可以使背景的不透明度为0.4,文本的不透明度达到100%。相反,它们都具有0.4的不透明度。
我使用的代码类似于以下代码:
<div style="opacity:0.4; background-image:url(...);">
<div style="opacity:1.0;">
Text
</div>
</div>
我希望这样可以使背景的不透明度为0.4,文本的不透明度达到100%。相反,它们都具有0.4的不透明度。
当前回答
子级继承不透明度。如果他们不这样做,那会很奇怪,也很不方便。
您可以使用半透明的PNG文件作为背景图像,也可以使用RGBa(a代表alpha)颜色作为背景颜色。
例如,50%褪色的黑色背景:
<div style=“background-color:rgba(0,0,0);”><div>已添加文本。</div></div>
其他回答
我会这样做
<div class="container">
<div class="text">
<p>text yay!</p>
</div>
</div>
CSS:
.container {
position: relative;
}
.container::before {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: url('/path/to/image.png');
opacity: .4;
content: "";
z-index: -1;
}
它应该会起作用。这是假设你需要有一个半透明的图像BTW,而不是一个颜色(你应该只使用rgba)。还假设你不能在Photoshop中预先改变图像的不透明度。
只需确保前景的宽度和高度与背景相同,或者尝试使用顶部、底部、左侧和右侧的财产。
<style>
.foreground, .background {
position: absolute;
}
.foreground {
z-index: 1;
}
.background {
background-image: url(your/image/here.jpg);
opacity: 0.4;
}
</style>
<div class="foreground"></div>
<div class="background"></div>
子级继承不透明度。如果他们不这样做,那会很奇怪,也很不方便。
您可以使用半透明的PNG文件作为背景图像,也可以使用RGBa(a代表alpha)颜色作为背景颜色。
例如,50%褪色的黑色背景:
<div style=“background-color:rgba(0,0,0);”><div>已添加文本。</div></div>
您可以使用伪元素::before或::after来获得半透明的背景,并且只需使用一个容器即可完成此操作。使用类似的方法:
<article>
Text.
</article>
然后应用一些CSS:
article {
position: relative;
z-index: 1;
}
article::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: .4;
z-index: -1;
background: url(path/to/your/image);
}
例子:
正文{背景:红色;}文章{位置:相对;z指数:1;}文章:之前{内容:“”;位置:绝对;顶部:0;左:0;宽度:100%;高度:100px;不透明度:.4;z指数:-1;背景:url(https://31.media.tumblr.com/8ec07e49f33088c2e32c158ca4262eb2/tumblr_n5wav6Tz4R1st5lhmo1_1280.jpg);}<文章>文本</article>
注意:您可能需要调整z索引值。
.transbg{/* Fallback for web browsers that don't support RGBa */
background-color: rgb(0, 0, 0);
/* RGBa with 0.6 opacity */
background-color: rgba(0, 0, 0, 0.6);
/* For IE 5.5 - 7*/
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
/* For IE 8*/
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";}