- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我才刚刚开始使用 Bootstrap ,我需要设置导航栏的帮助。
理想情况下,我想要的是有一个顶部居中的横幅,并且在其正下方有一个导航栏。当用户向下滚动时,横幅将滚动到屏幕外,但导航栏将固定在顶部。如果用户再次向上滚动,横幅将重新出现。对于移动用户,他们会在右侧看到图标,按下时会创建一个下拉菜单。
横幅和顶部导航栏不是全宽的。横幅长 960 像素,我使用 class="col-xs-12 col-md-10 col-md-offset-1"
进行设置。从美学上讲,它对我来说看起来不错。
我看过一些关于这个主题的帖子,但没有一个真正将所有这些要求混合在一起(不是全宽、坚持顶部和导航栏顶部的横幅标志)。我尝试了一些方法的逆向工程,但我一点运气都没有。
目前,我只使用药盒,因为它对我来说很容易制作和格式化。任何帮助是极大的赞赏。谢谢!
更新:这是我目前拥有的代码。我对这个设置很满意,只是希望导航栏在向下滚动后保持不变。正如您将看到的,这里有很多 div,我用它们来设置页面和阴影的样式。可能会更有效率,但它看起来完全符合我的要求。
HTML:
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-md-10 col-md-offset-1 rcshadow">
<div class="row">
<img class="img-responsive center-block" src="../images/header.jpg">
<!-- Fixed navbar -->
<div class="navbar navbar-default navbar-rc">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><span class="glyphicon glyphicon-home" /></span> Roll Call</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="#"><span class="glyphicon glyphicon-user"> New</span> <span class="glyphicon">Contact</span></a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><span class="glyphicon glyphicon-search" /> Search<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Contact Search</a></li>
<li class="divider"></li>
<li class="dropdown-header">Quick Search</li>
<li><a href="#">
<form class="navbar-form" role="search">
<div class="input-group input-group-xs">
<input type="text" class="input" placeholder="Search by name..." name="srch-term" id="srch-term">
<div class="btn-group btn-group-xs">
<button class="btn btn-default" type="submit"><i class="glyphicon glyphicon-search"></i></button>
</div>
</div>
</form>
</a></li>
</ul>
</li>
<li><a href="#contact"><span class="glyphicon glyphicon-list-alt" /> Attendance</a></li>
<li><a href="#contact"><span class="glyphicon glyphicon-calendar" /> Planner</a></li>
<li><a href="#contact"><span class="glyphicon glyphicon-stats" /> Statistics</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#contact"><span class="glyphicon glyphicon-log-out" /> Log-out</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="row">
<div class="rcpage">
<div class="row">
<h1>Test</h1>
<hr>
</div>
</div>
</div>
</div>
</div>
</div>
我的 css 文件(除了 Bootstrap ):
/* set a max-width for horizontal fluid layout and make it centered */
.container-fluid {
margin-right: auto;
margin-left: auto;
max-width: 970px;
}
body {
margin:0;
padding:0;
font-size:100%;
font-family:verdana,arial,'sans serif';
background-color:#3b607e;
color:#000000;
}
.navbar-rc {
margin-bottom:0px;
-moz-border-radius:0px;
border-radius:0px;
}
.navbar-nav > li > a, .navbar-brand {
padding-top:5px !important;
padding-bottom:0 !important;
height: 30px;
}
.navbar-nav > li:hover, .navbar-header:hover {
background-color:#e7e7e7;
}
.navbar {
min-height:30px !important;
}
.rcshadow {
-moz-box-shadow: 0px 0px 30px 10px #000;
-webkit-box-shadow: 0px 0px 30px 10px #000;
-khtml-box-shadow: 0px 0px 30px 10px #000;
box-shadow: 0px 0px 30px 10px #000;
-moz-border-radius: 0px 0px 15px 15px;
border-radius: 0px 0px 15px 15px;
}
.rcpage {
background-color:#FFF;
padding:0px 30px;
margin-left:auto;
margin-right:auto;
-moz-border-radius: 0px 0px 15px 15px;
border-radius: 0px 0px 15px 15px;
}
最佳答案
当您滚动到正确的位置时,您可以调整导航栏以使其position: fixed
。但是,这会使其在 DOM 中失去位置,因此您需要调整宽度和位置,并通过向容器元素添加边距来弥补丢失的空间。您可能需要考虑其他一些事情,例如像 bootstrap 通常使用 navbar-fixed-top
那样去掉 border-radius。仅添加该类而不是设置 position:fixed
实际上可能更好,但我在示例中遇到了一些其他问题,因此需要进行一些调整。
这里有一些额外的 javascript 来检查横幅高度,而不是根据它应该的高度对其进行硬编码。它只检查页面何时调整大小,但这可能需要进一步调整(例如,如果您在页面上动态添加元素,它可能会影响栏的高度,或者如果将滚动条添加到页面以解决溢出问题) .
我将 id 添加到导航栏的关键部分,但您也可以通过其他方式获得它们(例如,如果您只有一个导航栏,您可以只使用 .navbar
。
我将 id="banner"
添加到您的横幅,并将 id="navbar-container"
添加到包含它的 div(也包含导航栏)。我将 id="navbar"
添加到具有 .navbar
类的元素。
然后,这里是 javascript 的简化版本,只是为了显示重要的部分。不过,我已经对其进行了一些优化,您可以在完整的代码片段中看到这一点。由于某种原因,宽度似乎偏离了一个像素;我并没有真正深入研究为什么会这样,只是在设置宽度时将其添加回去。
$(document).on("scroll", function () {
var bannerHeight = $("#banner").outerHeight(true),
shouldBeSticky = $(window).scrollTop() > bannerHeight,
$container = $("#navbar-container"),
$navbar = $("#navbar");
if (shouldBeSticky) {
var margin = parseInt($container.css("margin-bottom"), 10);
$container.css("margin-bottom", margin + $navbar.outerHeight(true) + "px");
$navbar.css({
width: $navbar.outerWidth(true) + 1 + "px",
left: $navbar.offset().left + "px",
top: 0,
position: "fixed"
})
} else {
$container.css("margin-bottom", "");
$navbar.css({
width: "",
left: "",
top: "",
position: ""
});
}
}
}
});
jQuery(function($) {
var bannerHeight = 0,
navbarHeight = 0,
scrollTop = 0,
isSticky = false,
$container = $("#navbar-container"),
$navbar = $("#navbar"),
$banner = $("#banner"),
$window = $(window);
function setHeights() {
bannerHeight = $banner.outerHeight(true);
navbarHeight = $navbar.outerHeight(true);
}
function setScrollTop() {
scrollTop = $window.scrollTop();
}
function affixScrollbar() {
if (!bannerHeight || !navbarHeight) setHeights();
var shouldBeSticky = scrollTop > bannerHeight;
if (shouldBeSticky !== isSticky) {
if (isSticky = shouldBeSticky) {
var margin = parseInt($container.css("margin-bottom"), 10),
width = $navbar.outerWidth(true) + 1 + "px",
left = $navbar.offset().left + "px";
$container.css("margin-bottom", margin + navbarHeight + "px");
$navbar.css({ width: width, left: left, top: 0, position: "fixed" });
} else {
$container.css("margin-bottom", "");
$navbar.css({ width: "", left: "", top: "", position: "" });
}
}
}
$(window).on("resize", function() {
setHeights();
affixScrollbar();
});
$(document).on("scroll", function() {
setScrollTop();
affixScrollbar();
});
setHeights();
setScrollTop();
affixScrollbar();
});
/* set a max-width for horizontal fluid layout and make it centered */
.container-fluid {
margin-right: auto;
margin-left: auto;
max-width: 970px;
}
body {
margin: 0;
padding: 0;
font-size: 100%;
font-family: verdana, arial, 'sans serif';
background-color: #3b607e;
color: #000000;
}
.navbar-rc {
margin-bottom: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
.navbar-nav > li > a,
.navbar-brand {
padding-top: 5px !important;
padding-bottom: 0 !important;
height: 30px;
}
.navbar-nav > li:hover,
.navbar-header:hover {
background-color: #e7e7e7;
}
.navbar {
min-height: 30px !important;
}
.rcshadow {
-moz-box-shadow: 0px 0px 30px 10px #000;
-webkit-box-shadow: 0px 0px 30px 10px #000;
-khtml-box-shadow: 0px 0px 30px 10px #000;
box-shadow: 0px 0px 30px 10px #000;
-moz-border-radius: 0px 0px 15px 15px;
border-radius: 0px 0px 15px 15px;
}
.rcpage {
background-color: #FFF;
padding: 0px 30px;
margin-left: auto;
margin-right: auto;
-moz-border-radius: 0px 0px 15px 15px;
border-radius: 0px 0px 15px 15px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" />
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-md-10 col-md-offset-1 rcshadow">
<div class="row" id="navbar-container">
<img class="img-responsive center-block" src="../images/header.jpg" id="banner">
<!-- Fixed navbar -->
<div class="navbar navbar-default navbar-rc" id="navbar">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><span class="glyphicon glyphicon-home" /></span> Roll Call</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="#"><span class="glyphicon glyphicon-user"> New</span> <span class="glyphicon">Contact</span></a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><span class="glyphicon glyphicon-search" /> Search<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="#">Contact Search</a>
</li>
<li class="divider"></li>
<li class="dropdown-header">Quick Search</li>
<li>
<a href="#">
<form class="navbar-form" role="search">
<div class="input-group input-group-xs">
<input type="text" class="input" placeholder="Search by name..." name="srch-term" id="srch-term">
<div class="btn-group btn-group-xs">
<button class="btn btn-default" type="submit"><i class="glyphicon glyphicon-search"></i>
</button>
</div>
</div>
</form>
</a>
</li>
</ul>
</li>
<li>
<a href="#contact"><span class="glyphicon glyphicon-list-alt" /> Attendance</a>
</li>
<li>
<a href="#contact"><span class="glyphicon glyphicon-calendar" /> Planner</a>
</li>
<li>
<a href="#contact"><span class="glyphicon glyphicon-stats" /> Statistics</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="#contact"><span class="glyphicon glyphicon-log-out" /> Log-out</a>
</li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
<div class="row">
<div class="rcpage">
<div class="row">
<h1>Test</h1>
<hr>
</div>
<p>Retro iPhone four dollar toast, synth Schlitz Austin cray typewriter Thundercats fashion axe fixie aesthetic bicycle rights. Bicycle rights taxidermy pickled tattooed. Kogi shabby chic Tumblr, Helvetica American Apparel raw denim chia before
they sold out aesthetic bicycle rights taxidermy salvia paleo. Skateboard bespoke fanny pack, Godard hashtag put a bird on it yr vinyl sustainable tofu photo booth meh Thundercats forage. Street art 90's skateboard sartorial synth McSweeney's.
Cornhole High Life twee tote bag, polaroid Pinterest listicle literally organic sartorial YOLO blog master cleanse 8-bit. Small batch Banksy wolf yr.</p>
<p>Aesthetic cornhole lo-fi plaid, Odd Future seitan blog paleo. Ugh cronut aesthetic whatever photo booth PBR. Carles pop-up XOXO +1 readymade, meh health goth DIY. Chillwave Pitchfork kogi, Echo Park quinoa meggings fap asymmetrical Austin Wes
Anderson butcher Neutra hella PBR mixtape. IPhone Bushwick wayfarers, organic ennui ethical flexitarian. Blue Bottle 8-bit single-origin coffee hashtag, Marfa mlkshk meggings literally pug YOLO. Small batch cliche literally, lumbersexual try-hard
beard whatever Etsy umami skateboard tote bag Pitchfork.</p>
<p>Street art YOLO scenester, irony tousled shabby chic crucifix roof party bitters gastropub you probably haven't heard of them. Keffiyeh before they sold out wolf typewriter DIY Thundercats. Keffiyeh banh mi meditation pug, leggings 3 wolf moon
sriracha Blue Bottle. Swag ennui biodiesel, fashion axe mumblecore lomo sustainable lumbersexual American Apparel narwhal tofu Helvetica kitsch cred +1. Cronut squid keytar retro, chillwave ugh authentic synth semiotics distillery fingerstache
bespoke Williamsburg. Helvetica chambray tote bag semiotics Godard fingerstache. Actually slow-carb artisan blog, deep v tote bag keytar pickled lomo Pitchfork biodiesel.</p>
<p>Ethical Etsy drinking vinegar PBR&B Echo Park direct trade. Pug cronut ethical, you probably haven't heard of them Helvetica tousled mumblecore flexitarian before they sold out YOLO PBR&B dreamcatcher. XOXO craft beer sriracha, hella PBR&B polaroid
Brooklyn Williamsburg banh mi biodiesel cray bicycle rights typewriter. Brunch vegan tousled, leggings hella chia deep v cold-pressed VHS. Jean shorts post-ironic authentic literally Shoreditch squid. Polaroid mixtape freegan, food truck Blue
Bottle 90's umami. Craft beer Blue Bottle cliche, banjo polaroid keytar put a bird on it chillwave 90's.</p>
<p>Four loko keffiyeh migas, kitsch High Life DIY chillwave farm-to-table banh mi gluten-free mixtape locavore. Flexitarian paleo photo booth fap, scenester mustache High Life organic small batch. Pug raw denim organic, biodiesel bicycle rights
keytar mustache art party gentrify fingerstache ennui Williamsburg craft beer Brooklyn. Letterpress sustainable kogi squid cornhole. Semiotics disrupt pickled, kitsch XOXO scenester skateboard lumbersexual sustainable food truck pork belly
crucifix Godard raw denim fixie. Pour-over master cleanse forage VHS, Thundercats disrupt pug Truffaut vegan quinoa keffiyeh Echo Park cardigan you probably haven't heard of them. Mumblecore leggings iPhone Blue Bottle, fashion axe street
art chia Godard distillery shabby chic.</p>
<p>Flexitarian Kickstarter migas, distillery jean shorts roof party cold-pressed lumbersexual. Asymmetrical 3 wolf moon Truffaut, Wes Anderson lo-fi hashtag PBR&B tousled Schlitz hoodie pug Williamsburg. American Apparel skateboard chambray Wes
Anderson. Echo Park 90's Pitchfork Portland street art pop-up, flannel banh mi Godard VHS literally food truck. Semiotics butcher farm-to-table Etsy church-key Schlitz, tousled XOXO Vice street art selfies lumbersexual locavore. Cronut yr
post-ironic plaid pop-up tattooed DIY master cleanse paleo, normcore scenester quinoa slow-carb. Neutra wolf jean shorts umami banjo fashion axe.</p>
<p>Dreamcatcher migas artisan, iPhone tofu Austin food truck forage four dollar toast organic four loko gentrify Portland trust fund. Irony tilde mlkshk Neutra, gentrify organic pop-up next level photo booth. Austin Godard keffiyeh, plaid Tumblr
vinyl meditation freegan direct trade mustache. Actually yr polaroid flexitarian banh mi. Sartorial cray Blue Bottle cred. Gluten-free YOLO post-ironic, craft beer Kickstarter American Apparel freegan. Marfa meggings tote bag biodiesel, umami
migas kogi photo booth letterpress single-origin coffee Bushwick. Deep v organic readymade hashtag. Plaid mustache wolf irony leggings. Tilde occupy sustainable synth irony, readymade wolf normcore put a bird on it cliche. Cray fap cronut
butcher, trust fund umami banh mi. Street art retro next level forage. Kogi fashion axe sriracha, biodiesel ugh cray roof party. Kogi keffiyeh occupy paleo bicycle rights, drinking vinegar tousled Portland.</p>
<p>You probably haven't heard of them fanny pack street art pour-over, Wes Anderson 8-bit chambray mustache pork belly drinking vinegar. Bushwick health goth mumblecore keytar. 3 wolf moon direct trade put a bird on it twee tousled deep v, kogi
iPhone meditation dreamcatcher lo-fi jean shorts. Church-key bitters vinyl narwhal lomo synth. Chambray literally flexitarian Marfa craft beer tilde. Synth small batch Portland 8-bit, American Apparel church-key disrupt skateboard brunch health
goth listicle irony tofu artisan photo booth. Odd Future squid leggings paleo stumptown disrupt.</p>
<p>Neutra Marfa McSweeney's asymmetrical Intelligentsia, wolf Brooklyn stumptown street art. Cardigan Intelligentsia viral, pickled crucifix forage wolf listicle normcore synth. Dreamcatcher keffiyeh cronut 90's, readymade sriracha fap mustache
leggings Banksy Austin kale chips crucifix. Portland craft beer next level stumptown, heirloom four dollar toast tattooed McSweeney's hoodie shabby chic squid distillery before they sold out. Literally Tumblr ethical, cardigan 8-bit beard
put a bird on it gastropub pour-over cornhole ugh lo-fi. Post-ironic shabby chic chillwave, semiotics salvia before they sold out flexitarian retro locavore distillery meditation letterpress cliche. Blue Bottle pork belly roof party Thundercats
tattooed.
</p>
</div>
</div>
</div>
</div>
</div>
关于html - 如何让 Bootstrap 固定导航栏不是全宽,顶部有横幅,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29615867/
ion-nav-view 嵌套有一个奇怪的问题。当我在浏览器中加载应用程序时,我可以看到 URL 正在更改为 /app/menu,但页面上没有出现 menu.html 中的内容。页面是空白的。 以下是
运行截图如下: 源码如下: CN_TEST1
我正在开发一个示例reactjs应用程序(在学习过程中)。我有一个页面,其中列出了用户列表和一个用于添加新用户的添加按钮。 当我单击添加按钮时,我应该导航到用户表单以创建新用户。 单击用户表单中的提交
我的导航栏中的导航链接有问题。首先,它没有在导航栏中间对齐,如下所示: 另一部分是,我正在使用填充来执行此操作,因此如果我放置除“测试”以外的任何内容或将其放在不同的情况下,等等。它会重复该框。代码预
基本上,我有一个网站,我正在尝试使用 ajax 导航构建它,以便它获取网页并将它们加载到同一页面中。问题是当我正常放入内容时它工作正常但是当我尝试将内容添加到外部文档并从导航中访问它时框拆分你可以在这
以下站点左侧菜单的导航使用 CSS 进行鼠标悬停链接。 PVH 当我获取导航代码并将其设为单独的页面时。然后鼠标悬停链接不起作用。可能是什么原因? Test 最佳答案 可能... 对此事有话要说
一 问题描述 标准的 Web 浏览器包含在最近访问过的页面中向后和向前移动的功能。实现这些特性的一种方法是使用双栈来跟踪前后移动可以到达的页面。 Web 导航支持下面的命令。 后退页面:将当前页面推到
我想有条件地导航到某个页面。如果某些条件为真,我想导航到其他页面,否则我想留在同一页面上。我有类似的东西:- 在 bean.navigate 我有类似的东西:- public String navi
问题:有没有办法让按钮在用户控件中表现得像超链接? 我已经搜索了几天,但没有找到解决此问题的人。如何使用按钮在 WPF 应用程序中导航?具体来说,如何使用户控件内的按钮在其主机框架中导航?请记住,用户
我尝试使用 Android Navigation 组件并遇到了回栈问题。 我有 fragment A,B。 我写的: Navigation.findNavController(view).naviga
我有一个父布局,并从该子站点派生而来。 父级布局具有一个导航,每个导航点代表一个子站点。 如何在父布局中突出显示当前查看的子站点? 如果看起来如何? 最佳答案 可能不是最好的选择,但这是基于路由名称的
我正在开发Blazor服务器端应用程序。熟悉Blazor的任何人都在左侧的NavBar中填充超链接,并以特殊的CSS类进行装饰。我的问题是,如果任何内容都已编辑,我将试图停止导航并在一个特定页面上显示
我是 flutter 的新手,我正在开发一个具有多个屏幕的应用程序。 我想知道如何阻止 flutter 创建同一路线的多个屏幕, 例如我有 第1页和 第2页 ,如果我单击按钮导航到第 2 页并再次单击
我们的设计师创建了一个类似于上面屏幕的布局。主要思想是创建一个只有一个屏幕的应用程序,当您点击一个按钮时,屏幕的红色部分会发生变化(即 2 个文本框而不是 1 个文本框)。这个应用程序将是一个多平台应
有人可以解释为什么从pageE返回时不打印efeioi吗? 页面A Navigator.pushNamed(context, PageB.ROUTE).then((onValue) {
我需要在 iOS 应用程序中创建一个导航,如下图所示。 它包含一个标签栏和一个侧边菜单。 问题是正确的导航菜单按钮,应该在所有选项卡中都可见。甚至每个选项卡的所有内部屏幕。 当用户从侧面菜单中选择一个
这个问题在这里已经有了答案: Vim: move around quickly inside of long line (8 个答案) 关闭 8 年前。 我正在用 vim 编辑一个文本文件,我已经使
我很困惑,如何执行操作来创建从用户位置到用户选择/点击图钉覆盖层的图钉覆盖层(谷歌位置)的路线/导航。这是我的 map Activity ,它将显示我的 map 。 public class Plac
我正在使用 jQuery 函数 .animate 来一一突出显示导航链接。他们在 ul 中。我可以让它工作,只是想知道是否有一种方法可以缩短我的代码,这样我就不必单独突出显示每个项目。提前致谢 $(d
我正在创建一个带有“ anchor 导航”的网站,就像 Facebook 和谷歌邮件一样。我已经让它工作了,但还不完全。当我加载带有 #contact 之类的页面时,除非我单击它的链接,否则它不会加载
我是一名优秀的程序员,十分优秀!