0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

アコーディオンパネル使い方

Posted at

#アコーディオンパネル
スクリーンショット 2020-10-23 9.09.30.png

html
<dl class="accordion">
    <dt>A</dt>
    <dd class="dda">ここにAの内容が入る</dd>
    <dt>B</dt>
    <dd class="ddb">ここにBの内容が入る</dd>
    <dt>C</dt>
    <dd class="ddc">ここにCの内容が入る</dd>
  </dl>
css
    .accordion{
      width: 500px;
      margin: 50px auto;
      text-align: center;
    }
      dt {
        padding: 16px;
        background: #2894f0;
        border: 2px solid #2894f0;
        color: #ffffff;
        font-size: 24px;
      }
      dd {
        height: 100px;
        padding: 16px;
        border: 2px solid #2894f0;
        border-top: 0;
      }
js
$(function() {
      $('dd').hide();
      $('dt').on('click',function() {
        $('.dda').slideDown(400);
      });
    });
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?