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

              
                <body>  
      <ul>
        <li><a heref="#">top</a></li>
        <li><a heref="#">menu1</a></li>
        <li><a heref="#">menu2</a></li>
        <li><a heref="#">menu3</a></li>
      </ul>
  
     <main>
       <br><br><br>
    <p>Occaecat quis qui do sunt proident magna mollit labore nulla cupidatat
      laboris. Aute Lorem eu exercitation in id magna esse voluptate est incididunt enim id.
      Exercitation aute fugiat proident id tempor deserunt cupidatat incididunt velit. Aliquip
      eiusmod labore eiusmod quis pariatur in exercitation labore ea. Sunt laborum non excepteur
      adipisicing esse ea deserunt culpa commodo voluptate.</p>

    <p>Occaecat quis qui do sunt proident magna mollit labore nulla cupidatat
      laboris. Aute Lorem eu exercitation in id magna esse voluptate est incididunt enim id.
      Exercitation aute fugiat proident id tempor deserunt cupidatat incididunt velit. Aliquip
      eiusmod labore eiusmod quis pariatur in exercitation labore ea. Sunt laborum non excepteur
      adipisicing esse ea deserunt culpa commodo voluptate.</p>

    <p>Occaecat quis qui do sunt proident magna mollit labore nulla cupidatat
      laboris. Aute Lorem eu exercitation in id magna esse voluptate est incididunt enim id.
      Exercitation aute fugiat proident id tempor deserunt cupidatat incididunt velit. Aliquip
      eiusmod labore eiusmod quis pariatur in exercitation labore ea. Sunt laborum non excepteur
      adipisicing esse ea deserunt culpa commodo voluptate.</p>

    <p>Occaecat quis qui do sunt proident magna mollit labore nulla cupidatat
      laboris. Aute Lorem eu exercitation in id magna esse voluptate est incididunt enim id.
      Exercitation aute fugiat proident id tempor deserunt cupidatat incididunt velit. Aliquip
      eiusmod labore eiusmod quis pariatur in exercitation labore ea. Sunt laborum non excepteur
      adipisicing esse ea deserunt culpa commodo voluptate.</p>
  </main>

</body>
              
            
!

CSS

              
                body {
  width: 324px;
  margin: 0 auto;
  }

ul {
  width: 324px;
  padding: 20px 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
  position: fixed;
  margin-top: 0;
  background-color: #95f779;
  transition: .3s;
  }

.small {
  padding: 0 20px;
}

li {
    list-style-type: none;
}



              
            
!

JS

              
                $(function(){
  // 1 スクロールしたときに~
  $(window).scroll(function(){
    // 2 スクロール量が200を超えているかどうか
    if($(window).scrollTop() > 200){
      // 3 超えていたら、small クラスを追加
      $("ul").addClass("small");
    }else{
      // 4 超えない場合、small クラスを削除
      $("ul").removeClass("small");
    }
  });
});

              
            
!
999px

Console