所以在我的网站上,我在网站的顶部有一个静态标题 - 它没有固定在视口的顶部。但是,我想做的是一旦用户滚过这个div的底部,就会出现一个固定的导航栏。我的代码几乎可以工作,但只触发div的顶部偏移量,这是页面的最顶层。这是我的代码:
$("#header-2").hide(); // hide the fixed navbar initially
var topofDiv = $("#header-container").offset().top; //gets offset of header
$(window).scroll(function(){
if($(window).scrollTop() > topofDiv){
$("#header-2").show();
}
else{
$("#header-2").hide();
}
});
同样,一旦用户滚过#header-container
的底部,我需要触发显示固定的导航栏,而不是现在的顶部。帮助
答案 0 :(得分:28)
我认为如果你将div的高度添加到顶部偏移量,你将得到你想要的行为
$("#header-2").hide(); // hide the fixed navbar initially
var topofDiv = $("#header-container").offset().top; //gets offset of header
var height = $("#header-container").outerHeight(); //gets height of header
$(window).scroll(function(){
if($(window).scrollTop() > (topofDiv + height)){
$("#header-2").show();
}
else{
$("#header-2").hide();
}
});
答案 1 :(得分:0)
目标:动态表上的响应式(按大小调整)粘性页眉,一旦表超出范围(通过窗口滚动),该页眉也会隐藏。
解决方案:
我知道这有点晚了,但是我有一个非常不错的代码段,其中的动态表格包装在页面中间的div /文章中。
您可以在yardpenalty.com/ppr-rankings
上看到工作示例。我也有一个固定的标题/响应网站,因此我也必须适应菜单导航栏。
一旦用户超出表格范围,我就会隐藏固定的标题。
这是 HTML:
<article id="ppr" class="ppr">
<table id="table-1" class="header-table cheat no-margin-auto xs-small table table-condensed
table-hover">
<tbody>
<tr>
<td><b>PPR Ranking</b><br>
<em>Note*</em>
</td>
<td><b>First Name</b></td>
<td><b>Last Name</b></td>
<td><b>Team</b></td>
<td><b>Pos</b></td>
</tr>
</tbody>
</table>
<table id="header-fixed"></table>
<table id="1" class="first cheat no-margin-auto xs-small table table-condensed table-hover"><tbody>
<tr class="rb">
<td>1<span class="abrev"><i class="fa fa-arrow-up"> +3</i></span></td>
<td>Saquon</td>
<td>Barkley</td>
<td>NYG</td>
<td>RB</td>
</tr>
<tr class="rb">
<td>2<span class="abrev"><i class="fa fa-arrow-down"> -1</i></span></td>
<td>Christain</td>
<td>McCaffrey</td>
<td>CAR</td>
<td>RB</td>
</tr>....
<!--Dynamic table//-->
</table>
</article>
这是 CSS:
<style>
#header-fixed {
position: fixed;
top: 50px;
display: none;
}
.ppr{position:relative;}
</style>
以下是文档。就绪的js / jQuery:
//sticky table header
var tableOffset = jQuery("#table-1").offset().top;
var header = jQuery("#table-1").clone();
var fixedHeader = jQuery("#header-fixed").append(header).width(header.parent().width());
jQuery(window).on("resize",function(){
//adjust the global tableOffset for sticky table header
tableOffset = jQuery("#table-1").offset().top;
if(fixedHeader.not(":hidden")){
//adjust sticky table header size
jQuery("#header-fixed").width( jQuery("#header-fixed").parent().width());
}
$(window).trigger("scroll");
});
jQuery(window).on("scroll", function() {
var offet = $(this).scrollTop();
var height = jQuery("#ppr").outerHeight() + tableOffset;
// console.log("window offset:" + offet + "ppr + table offset:"+height+"window:"+jQuery(this).scrollTop());
if (offet >= tableOffset && fixedHeader.is(":hidden") && offet < height) {
fixedHeader.show();
}
//lets hide header when reach last two records
if (offet < tableOffset || offet > (height-80)) {
fixedHeader.hide();
}
});