7.手风琴
准备HTML结构
<div class="panel">
<dl>
<dt>One Item</dt>
<dd>One Item Content .</dd>
<dt>two Item</dt>
<dd>two Item Content .</dd>
<dt>3 Item</dt>
<dd>3 Item Content .</dd>
<dt>4 Item</dt>
<dd>4 Item Content .</dd>
</dl>
</div>准备css样式
*{margin: 0;padding: 0;}
.panel{
width: 480px;
min-height: 160px;
margin: 50px auto;
background: #eee;
}
.panel dt{
min-height: 40px;
line-height: 40px;
background: #f9f9f9;
padding-left: 10px;
cursor: pointer;
}
.panel dd{
padding-left: 10px;
height: 0;
overflow: hidden;
transition: height .5s;
}接下来书写我们的JS逻辑
Last updated