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

              
                <ul class="accordion__list">
  <li class="accordion__item">
    <div class="accordion__head">
      <p>アコーディオン1の開閉ボタン</p>
    </div>
    <div class="accordion__body">
      <p>アコーディオン1の中身</p>
    </div>
  </li>
  <li class="accordion__item">
    <div class="accordion__head">
      <p>アコーディオン2の開閉ボタン</p>
    </div>
    <div class="accordion__body">
      <p>アコーディオン2の中身</p>
    </div>
  </li>
  <li class="accordion__item">
    <div class="accordion__head">
      <p>アコーディオン3の開閉ボタン</p>
    </div>
    <div class="accordion__body">
      <p>アコーディオン3の中身</p>
    </div>
  </li>
</ul>
              
            
!

CSS

              
                /*
  アコーディオンそのものの横幅と余白を指定。
  開閉動作に影響なし。
*/
.accordion__list {
  width: 500px;
  padding: 10px;
}

/*
  アコーディオンの2つ目以降、上に余白を取る。
  開閉動作に影響なし。
*/
.accordion__item:nth-child(n+2) {
  margin-top: 10px;
}

/*
  アコーディオンの開閉ボタンの装飾。
  position: relative;が無いと、
  「+」「-」の位置がずれるので注意。
*/
.accordion__head {
  position: relative;
  width: 100%;
  padding: 10px;
  color: #fff;
  background: #019ac6;
  cursor: pointer;
}

/*
  アコーディオンの開閉ボタンの右側に「+」を表示。
*/
.accordion__head::after {
  content: "+";
  position: absolute;
  top: 8px;
  right: 10px;
}

/*
  アコーディオンが開いた際に、
  開閉ボタンの右側に「+」を「-」に変更する。
*/
.accordion__item.active .accordion__head::after {
  content: "-";
  right: 13px;
}

/*
  アコーディオンの閉じている部分の装飾。
  height: 0; overflow: hidden;にすることで、
  通常時は表示されないようにする。
*/
.accordion__body {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding: 0 10px;
  background: #e8e8e8;
  transition: all .25s ease;
}

/*
  アコーディオンが開いた際に、
  heightを0からautoに、paddingの上下を0から10に。
*/
.accordion__item.active .accordion__body {
  height: auto;
  padding: 10px;
}
              
            
!

JS

              
                // 厳格モードで実行
"use strict";

// アコーディオンパーツ全体と、開閉ボタンとなる部分のDOMを変数に格納。
const accordionItem = document.getElementsByClassName("accordion__item");
const accordionBtn = document.getElementsByClassName("accordion__head");

// 開閉ボタンがクリックされたときの処理。
// 開閉ボタンの数だけ処理できるようfor文を回す。
// accordionBtn[i](i部分には何番目のアコーディオンボタンか、の数字が入る)がクリックされた際、
// accordionItem[i](アコーディオンボタンと同じ数字のアコーディオンパーツ)に
// activeというcssのclassを付与する。
for(let i = 0; i < accordionBtn.length; i++) {
    accordionBtn[i].addEventListener("click", function() {
        accordionItem[i].classList.toggle("active");
    });
}
              
            
!
999px

Console