css スクロール时ヘッダー切り替え

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css スクロール时ヘッダー切り替え相关的知识,希望对你有一定的参考价值。

// スクロール時ヘッダーを切り替えます
$(function() {
  var $win = $(window),
      $header = $('header'),
      animationClass = 'is-animation';

  $win.on('load scroll', function() {
    var value = $(this).scrollTop();
    if ( value > 100 ) {
      $header.addClass(animationClass);
    } else {
      $header.removeClass(animationClass);
    }
  });
});
/*---------- ヘッダー切り替え後 ----------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  background: #fff;
  transition: .3s;
}

header h1 {
  color: #fff;
  transition: .3s;
}
.is-animation {
  height: 100px;
}

以上是关于css スクロール时ヘッダー切り替え的主要内容,如果未能解决你的问题,请参考以下文章

javascript ヴューポート切り替え(スマホ横向き)

php 单ページでターム别で表示を切り替える

javascript メニューのタブ切り替え

markdown rbenvによるバージョン切り替え

csharp interfaceの明示的実装の例(プレイヤーキャラクターのアニメーション切り替え)

csharp キー入力でアニメーションを切り替え,画面にアニメーション名を表示する