css 如何制作透明粘贴页眉?

q1qsirdb  于 2023-01-14  发布在  其他
关注(0)|答案(3)|浏览(106)

我想尝试编写一个固定头文件,它有点透明。
有什么想法,示例代码,教程?如果可能的话,我只想用CSS来实现它。我想,需要使用不透明度(CSS3)。

liwlm1x9

liwlm1x91#

示例

全屏jsFiddle:http://fiddle.jshell.net/NathanJohnson/LrNBt/show/
jsFiddle文件夹:http://jsfiddle.net/NathanJohnson/LrNBt/
编号

HTML:

<div id="header">
    <div id="header-content">
        <h1>Here is some heading text :)</h1>
        <p>Here is some more content of the header...</p>
    </div>
</div>

CSS:

body {
    font-family: arial, sans-serif;
    padding: 0;
    margin: 0;
}
#header {
    background-color: black;
    /*Opacity start*/
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=80);
    -moz-opacity: 0.80;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    /*Opacity end*/
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    padding: 0;
    margin: 0;
}
#header #header-content {
    margin: 10px;
}

或者,您可以只使用rgba()而不是opacity

#header {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    padding: 0;
    margin: 0;
}
#header #header-content {
    margin: 10px;
}

希望这能帮上忙。

xeufq47z

xeufq47z2#

使用Firebug分析他们的代码:

#header {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 90;
    background: url("../images/bg-header.png") repeat-x scroll 0 0 transparent;
    height: 247px;
}

不使用图像,而使用:

background: #000;
filter:alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
y1aodyip

y1aodyip3#

您还可以使用新的backdrop-filter property创建glassy(半透明)背景:

header {
  top: 0;
  position: sticky;
  background: transparent;
  backdrop-filter: blur(5px);
}

x一个一个一个一个x一个一个二个x

相关问题