irietoku of Cording_line
10/6/2017 - 9:47 AM

アコーディオン

アコーディオン

.exsample {
  border: 1px solid #000;
  text-align: center;
  width: 200px;
  padding: 10px 0;
}

.exsample:hover {
  cursor: pointer;
}

.accordion {
  width: 200px;
  height: 200px;
  background-color: #ccc;
  display: none;
}
$(function(){
        $(".exsample").on("click", function() {
            $(this).next().slideToggle();
        });
    });_