我正在使用Bootstrap 3.我想重新创建与documentation on the Bootstrap site中侧边栏相同的功能。
以下是我的代码,它也在这里:http://bootply.com/82119
两个问题。
data-offset
值似乎无效。我做错了什么?
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="list-group navbar" id="sidebar">
<ul class="nav" id="mynav">
<li><a href="#c1" class="list-group-item">
Content 1
</a>
</li>
<li> <a href="#c2" class="list-group-item" contenteditable="false">Content 2
</a>
</li>
<li> <a href="#c3" class="list-group-item" contenteditable="false">Content 3
</a>
</li>
<li> <a href="#c4" class="list-group-item" contenteditable="false">Content 4
</a>
</li>
<li> <a href="#c5" class="list-group-item" contenteditable="false">Content 5
</a>
</li>
</ul>
</div>
</div>
<div class="col-md-9" id="mycontent" data-spy="scroll" data-target="#sidebar" data-offset="0">
<h2 id="c1" class="">Content 1</h2>
At Bootply we attempt to build simple Bootstrap templates that utilize...
<hr class="col-md-12">
<h2 id="c2" class="">Content 2</h2>
Rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto...
<hr class="col-md-12">
<h2 id="c3" class="">Content 3</h2>
Rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto...
<hr class="col-md-12">
<h2 id="c4" class="">Content 4</h2>
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium...
<h2 id="c5" class="">Content 5</h2>
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium...
</div>
</div>
</div>
答案 0 :(得分:13)
毕竟你的问题似乎并不重复。 您可以尝试这样的事情:http://bootply.com/82265
当您点击子区域中的链接时,内容将隐藏在导航栏后面。我把你的内容项包装在额外的div中。通过这样做,我可以添加一个填充顶部。填充使h2可见:
var clicked = false;
$('#mynav li a').click(
function(){
$('#mycontent > div > h2').css('padding-top',0);
$($( this ).attr('href') + ' > h2').css('padding-top','50px');
clicked = true;
}
);
$('body').on('activate.bs.scrollspy', function () {
if(!clicked)$('#mycontent > div > h2').css('padding-top',0);
clicked = false;
})
我发现的问题是一种撤消填充顶部的方法。我无法使用滚动事件,因为在添加填充后,词缀会触发滚动事件。撤消'activate.bs.scrollspy'似乎有效。
在bootply中我添加了$('body').scrollspy({ target: '#sidebar', offset:80 });
的scrollspy,你也可以使用<body data-spy="scroll" data-target="#sidebar">
。我不确定rolllspy偏移的正确值是什么。 70似乎有点工作。
请注意,我也是最后一个内容项的最小高度,否则您无法滚动最后两个项目。
我认为上面的内容将更像某种概念证明,然后才是真正的答案。
注意 Bootstrap的文档会遇到同样的问题。他们通过在默认情况下在主题之间添加额外的空格来修复此问题,请参阅:
将在docs.css中添加额外的空格:
h1[id] {
margin-top: -45px;
padding-top: 80px;
}
答案 1 :(得分:1)
我遇到了同样的问题,最后通过点击导航链接上的点击来阻止浏览器处理点击,并在针对页面布局调整的位置处手动滚动到目标元素,从而解决了这个问题。这是代码:
// figure out a nice offset from the top of the page
var scrollTopOffset = $('#main-nav-banner').outerHeight() + 50;
// catch clicks on sidebar navigation links and handle them
$('.bs-sidebar li a').on('click', function(evt){
// stop the default browser behaviour for the click
// on the sidebar navigation link
evt.preventDefault();
// get a handle on the target element of the clicked link
var $target = $($(this).attr('href'));
// manually scroll the window vertically to the correct
// offset to nicely display the target element at the top
$(window).scrollTop($target.offset().top-(scrollTopOffset));
});
scrollTopOffset变量确定项目滚动顶部的接近程度 - 您可能需要根据页面布局调整值的计算。在上面的示例中,我在页面顶部使用了主导航横幅的高度,并添加了50个像素,因为“看起来不错”。
除了添加上面的额外代码段之外,您无需修改HTML或更改初始化scrollspy功能的方式。
对我而言,它在Bootstrap v3.0.0下非常巧妙地运行 - 我希望这对其他人也有用!