css3按钮动画效果怎么实现?css3实现漂亮的按钮动画特效

发布时间:2020-02-16编辑:脚本学堂
如何用css3实现一个漂亮的按钮动画效果,仅用css3是可以实现按钮动画特效的,本文给出的例子,在chrome浏览器下测试通过,一个简单漂亮的按钮动画实例代码。

css3实现的按钮动画效果

chrome下效果理想,firefox,ie9下没有动画效果。

1、css样式代码:
 

复制代码 代码示例:
.button, .button:visited{
background:#222 url(overlay.png) repeat-x;
display:inline-block;
padding:5px 10px 6px;
color:#fff;
text-decoration:none;
/*border-radius*/
-webkit-border-radius:6px;
-moz-border-radius:6px;
border-radius:6px;
/*box-shadow*/
-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.6);
-moz-box-shadow:0 1px 3px rgba(0,0,0,0.6);
box-shadow:0 1px 3px rgba(0,0,0,0.6);
text-shadow:0 -1px 1px rgba(0,0,0,0.25);
border-bottom:1px solid rgba(0,0,0,0.25);
position:relative;
cursor:pointer;
}
.button:hover{
background-color:#111;
color:#fff;
/*animation-duration*/
-webkit-animation-duration:2s;
-moz-animation-duration:2s;
-ms-animation-duration:2s;
-o-animation-duration:2s;
animation-duration:2s;
/*animation-timing-function*/
-webkit-animation-timing-function:ease-out;
-moz-animation-timing-function:ease-out;
-ms-animation-timing-function:ease-out;
-o-animation-timing-function:ease-out;
animation-timing-function:ease-out;
/*animation-iteration-count*/
-webkit-animation-iteration-count:infinite;
-moz-animation-iteration-count:infinite;
-ms-animation-iteration-count:infinite;
-o-animation-iteration-count:infinite;
animation-iteration-count:infinite;
}
/*定义动画*/
@-webkit-keyframes greenPulse{
from { background-color:#91bd09;
/*box-shadow*/
-webkit-box-shadow:0 0 9px #333;
-moz-box-shadow:0 0 9px #333;
box-shadow:0 0 9px #333;
}
50%{
background-color:#B4E02C;
/*box-shadow*/
-webkit-box-shadow:0 0 18px #91bd09;
-moz-box-shadow:0 0 18px #91bd09;
box-shadow:0 0 18px #91bd09;
}
to{
background-color:#91bd09;
/*box-shadow*/
-webkit-box-shadow:0 0 9px #333;
-moz-box-shadow:0 0 9px #333;
box-shadow:0 0 9px #333;
}
}
.green.button, .green.button:visited{
background-color:#91bd09;
}
.green.button:hover{
/*animation-name*/
-webkit-animation-name:greenPulse;
-moz-animation-name:greenPulse;
-ms-animation-name:greenPulse;
-o-animation-name:greenPulse;
animation-name:greenPulse;
}

2、html部分
 

复制代码 代码示例:
<ul>
<li>
<a class="button magenta super" href="#">按钮</a>
<a class="button green super" href="#">按钮</a>
<a class="button red super" href="#">按钮</a>
<a class="button orange super" href="#">按钮</a>
<a class="button blue super" href="#">按钮</a>
<a class="button yellow super" href="#">按钮</a>
</li>
<li>
<input type="button" class="button magenta super" value="按钮" />
<input type="button" class="button green super" value="按钮" />
<input type="button" class="button red super" value="按钮" />
<input type="button" class="button orange super" value="按钮" />
input type="button" class="button blue super" value="按钮" / input type="button" class="button yellow super" value="按钮" / /li /ul
<input type="button" class="button blue super" value="按钮" />
<input type="button" class="button yellow super" value="按钮" />
</li>