先看看这个button。
代码如下:
<div class="button">
<span class="label">Button Label</span>
<span class="label">Button Label</span>
</div>
.button {
display: inline-block;
height: 60px;
line-height: 60px;
overflow: hidden;
position: relative;
text-align: center;
}
.label {
display: block;
height: 100%;
position: relative;
top: 0%;
transition: top 0.35s;
width: 100%;
}
.button:hover .label {
top: -100%;
}


