css Sticky Header che varia allo scroll

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css Sticky Header che varia allo scroll相关的知识,希望对你有一定的参考价值。

$(window).scroll(function() {
if ($(this).scrollTop() > 1){  
    $('header').addClass("sticky");
  }
  else{
    $('header').removeClass("sticky");
  }
});
<header>
  <h1>Sticky Header</h1>
</header>
header{
  position: fixed;
  width: 100%;
  text-align: center;
  font-size: 72px;
  line-height: 108px;
  height: 108px;
  background: #335C7D;
  color: #fff;
  font-family: 'PT Sans', sans-serif;
  transition: all 0.4s ease;
}

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

以上是关于css Sticky Header che varia allo scroll的主要内容,如果未能解决你的问题,请参考以下文章

在iOS中实现sticky header

Android Sticky header RecyclerView/ Section Header RecyclerView

markdown Venture - Sticky Mobile Header,顶部有公告栏

Jquey 修改 元素 CSS 样式

固定<;thead>;。没有';不需要任何自定义的css/html。做什么位置:粘性罐头';吨

UICollectionView 隐藏/防止单元格在 Sticky Header 后面滚动