gpt4 book ai didi

html - 滚动时,正文一直到导航栏

转载 作者:行者123 更新时间:2023-12-04 03:37:22 25 4
gpt4 key购买 nike

我的导航栏有问题,当我尝试滚动时, body 一直在 Logo 后面。引用下图:
enter image description here
无论如何,当我滚动时,我可以让 body 消失吗?最好它会在红线之前消失。
enter image description here
对不起我的英语不好,如果这个问题可能有点愚蠢。开发新手,仍在学习:)
这是导航栏的 CSS 代码:

#header {
height: 100px;
transition: all 0.5s;
z-index: 997;
transition: all 0.5s;
background: rgba(42, 44, 57, 0.9);
}

#header.header-transparent {
background: transparent;
}

#header.header-scrolled {
background: #fff;
}

#header .logo h1 {
font-size: 28px;
margin: 0;
padding: 0;
line-height: 1;
font-weight: 700;
letter-spacing: 1px;
}

最佳答案

您是否尝试过更改导航栏的背景颜色:

#header {
height: 100px;
transition: all 0.5s;
z-index: 997;
transition: all 0.5s;
background: white;
}

#header.header-transparent {
background: transparent;
}

#header.header-scrolled {
background: #fff;
}

#header .logo h1 {
font-size: 28px;
margin: 0;
padding: 0;
line-height: 1;
font-weight: 700;
letter-spacing: 1px;
}

关于html - 滚动时,正文一直到导航栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66660228/

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