修复了 Header 当上面的 Div 滚动过去时

Fixed Header when the Div above is scrolled past

我有这个设置,所以当页面滚动 400 像素时,#headermenu 会固定。然而,上面的 div 将根据屏幕尺寸具有可变高度。

我需要 JS 使 #headermenu 在其上方 div 的底部(#mixedheightheader)到达 window 的顶部时固定。

JSFIDDLE

在此先感谢您的帮助

<div id="mixedheightheader"></div>

$(function() {    
  $('#headermenu');
});

$(window).scroll(function() {    
  if ($(document).scrollTop() < 400)     {        
    if ($('#headermenu'))         {            
      $('#headermenu');            
      $('#headermenu').stop().css({
        top: '0',
        position: 'relative'
      });        
    }    
  }    
  else     {        
    if ($('#headermenu'))         {            
      $('#headermenu');            
      $('#headermenu').stop().css({
        top: '0',
        position: 'fixed'
      });        
    }      
  }
});
body {
  height: 3000px
}

#headermenu {
  width: 100%;
  background: black;
  min-height: 100px;
}

#mixedheightheader {
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  min-height: 200px;
  overflow: hidden;
  background: grey;
  clear: both;
}

#below {
  width: 100%;
  background: darkgrey;
  height: 100px;
  position: relative;
  z-index: -1;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="mixedheightheader"></div>
<div id="headermenu"></div>
<div id="below"></div>

我给你更新了fiddle:

https://jsfiddle.net/yLon2oj3/11/

$(function() {    
  var isFixed = false; //This is to not fix if already fixed and reverse

    $(window).scroll(function() {
    var mixedHeightHeader = $('#mixedheightheader');
    //This uses the offset top position and the height to calculate the bottom of your variable header
    var mixedHeightHeaderBottom = mixedHeightHeader.offset().top + mixedHeightHeader.height();
    var headerMenu = $('#headermenu');


    if ($(document).scrollTop() < mixedHeightHeaderBottom && isFixed)       {        
        if (headerMenu) {                  
        headerMenu.css({
            top: '0',
            position: 'relative'
        });  
        isFixed = false;
        //this is to remove the placeholder space of the fixed top nav, when its not fixed to top
        mixedHeightHeader.css('margin-bottom', '0');
      }    
    }    
    else  if ($(document).scrollTop() > mixedHeightHeaderBottom && !isFixed)   {        
      if (headerMenu) {                      
        headerMenu.css({
          top: '0',
          position: 'fixed'
        });
        //This holds the position that was occupied by the fixed top nav when it was a relative element, because its now taken out of the flow.
        mixedHeightHeader.css('margin-bottom', headerMenu.height() + 'px');
      }
      isFixed = true;
    }
    });

});