Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!-- ヘッダー -->
<header>
  <!-- ロゴ -->
  <a href="#" class="logo">Logo</a>
  <!-- ナビゲーション -->
  <ul>
     <li><a href="#">会社案内</a></li>
    <li><a href="#">サービス</a></li>
    <li><a href="#">お問い合わせ</a></li>
  </ul>
</header>

<!-- スクロール用のsectionタグ -->
<section class="section section-a">
</section>

<!-- スクロール用のsectionタグ -->
<section class="section section-b">
</section>
              
            
!

CSS

              
                @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
}

header {
  /* headerを画面上部に固定する */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* ロゴとナビゲーションを横並びにする */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* スクロールしても他のコンテンツの下にならないようにする */
  z-index: 10;
  /* 背景色を黒にする */
  background: #000;
  /* headerに余白を作る */
  padding: 25px 15px;
  /* アニメーションの変化時間 */
  transition: 0.5s;
}

/* ロゴのデザイン */
.logo {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 1px;
  /* アニメーションの変化時間 */
  transition: 0.5s;
}

/* ナビゲーションのリンクを横並びにする */
ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

li {
  list-style: none;
}

/* ナビゲーションのリンクのスタイル調整 */
a {
  display: inline-block;
  margin-left: 12px;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 1.5px;
  /* アニメーションの変化時間 */
  transition: 0.5s;
}

/* スクロールするため高さを出すためのsection */
.section {
  height: 100vh;
}

.section-a {
  background: #000;
}

.section-b {
  background: #fff;
}

/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
header.scroll-nav {
  /* 余白を狭くする */
  padding: 10px 15px;
  /* 背景を白にする */
  background: #fff;
  /* コンテンツの背景が白でもナビゲーションだと分かりやすいように影をつける */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
header.scroll-nav .logo,
header.scroll-nav ul li a {
  color: #000;
}

              
            
!

JS

              
                window.addEventListener("scroll", function () {
  // ヘッダーを変数の中に格納する
  const header = document.querySelector("header");
  // 100px以上スクロールしたらヘッダーに「scroll-nav」クラスをつける
  header.classList.toggle("scroll-nav", window.scrollY > 100);
});

              
            
!
999px

Console