【问题标题】:Navbar should be fix at the top导航栏应该固定在顶部
【发布时间】:2017-03-01 12:09:47
【问题描述】:

向下滚动后,我的网站中有 2 个标题,顶部标题应隐藏,导航栏下方应固定在顶部,即应固定在顶部..如何为此编写代码??帮帮我..

【问题讨论】:

    标签: navbar sticky


    【解决方案1】:
    $(document).ready(function() {
    
      $(window).scroll(function () {
        if ($(window).scrollTop() > 280) {
          // hide top menu
          // make bottom menu fixed
        }
        if ($(window).scrollTop() < 281) {
          // show top menu
          // make bottom menu relative
        }
      });
    });
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2018-12-12
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2023-03-21
      • 1970-01-01
      • 2012-05-20
      • 1970-01-01
      相关资源
      最近更新 更多