gpt4 book ai didi

javascript - 你如何使导航栏透明然后使用 bootstrap 3 改变颜色。(附)

转载 作者:太空狗 更新时间:2023-10-29 12:25:11 28 4
gpt4 key购买 nike

一个星期以来,我一直在努力寻找如何做到这一点,但一直无法做到。我的 html 导航栏看起来像这样。

<div class="maincontainer">
<!--Navbar-->
<div data-spy="affix" data-offset-top="60" data-offset-bottom="200">
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header" >
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Pixoweb</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Examples<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Example 1</a></li>
<li><a href="#">Example 2</a></li>
<li><a href="#">Example 3</a></li>
<li><a href="#">Example 4</a></li>
</ul>
</li>
<li><a href="#contact" data-toggle="modal">Contact</a></li>
</ul>
</div>
</div>
</div>

Js

    $('#myAffix').affix({
offset: {
top: 100,
bottom: function () {
return (this.bottom = $('.footer').outerHeight(true))
}
}
})

CSS

      .affix {
position: fixed !important;
top: 0 !important;
width: 100% !important;
background-color: #957595 !important;
}

到目前为止,这使得导航栏位于上下文和图像之后。如果有人可以帮助我,我会很高兴

最佳答案

Navbar 并没有落后于文本/图像,它已经通过 bootstrap 词缀进行了 3d 转换,因此看起来它已经落后了。我假设您想在固定(固定)时更改导航栏的背景颜色。您可以使用以下 CSS。注意:您不需要 JavaScript。

.affix .navbar-default {
position: fixed !important;
top: 0 !important;
width: 100% !important;
background-color: #957595 !important;
}

.affix {
width: 100% !important;
}

关于javascript - 你如何使导航栏透明然后使用 bootstrap 3 改变颜色。(附),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28387161/

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