Sticky Header after scrolling down

前端 未结 10 1237
野性不改
野性不改 2020-11-27 11:19

I saw this sticky header on this website: http://dunked.com/ (no longer active, view archived site)

When you scroll down the sticky header comes down from t

10条回答
  •  广开言路
    2020-11-27 11:53

    css:

    header.sticky {
      font-size: 24px;
      line-height: 48px;
      height: 48px;
      background: #efc47D;
      text-align: left;
      padding-left: 20px;
    }
    

    JS:

    $(window).scroll(function() {
     if ($(this).scrollTop() > 100){  
        $('header').addClass("sticky");
      }
      else{
        $('header').removeClass("sticky");
      }
    });
    

提交回复
热议问题