gpt4 book ai didi

html - 背景图像未全屏显示

转载 作者:行者123 更新时间:2023-11-27 23:25:51 25 4
gpt4 key购买 nike

我正在尝试在背景中显示完整图像。但!它表现出非常奇怪的行为。

它只占用了我屏幕的 60%。屏幕的其余部分采用白色。但是当我定义不透明度属性时,此不透明度仅适用于 40% 屏幕的其余部分,并且图像开始显示不透明度效果(但仅在这 40% 屏幕中)。..

我已经在谷歌上搜索了很多次并应用了很多 css 技巧,但它并没有全屏显示不透明度。..

请帮帮我!

CSS:

html, body {
height:100%;
}

body{
background: url(../..//images/background_pic.jpg) center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
opacity: 0.8;
}

最佳答案

我发现这种方法可以解决您的问题。检查this JSFiddle .

风格:

html, body {
}
.parent{
position:relative;
}
.background{
position:absolute;
background: url(http://farm6.static.flickr.com/5182/5613127636_e854aea66b_o.png) no-repeat center center fixed;
width: 100%;
height:100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
opacity: 0.3;
}
.foreground{
position:relative;
}

HTML:

<div class="parent">
<div class="background"></div>
<div class="foreground">
Put text here.
</div>
</div>

关于html - 背景图像未全屏显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38622140/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com