Welcome to Delicate template
Header
Just another WordPress site
Header

css3之有趣的动画一

3月 3rd, 2013 | Posted by 无 名 in css

先看看这个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%;
}

You can follow any responses to this entry through the RSS 2.0 Both comments and pings are currently closed.