css3的动画特效--动画序列(animation)
⾸先复习⼀下animation动画添加各种参数
(1)infinite参数,表⽰动画将⽆限循环。在速度曲线和播放次数之间还可以插⼊⼀个时间参数,⽤以设置动画延迟的时间。如希望使图标在1秒钟后再开始旋转,并旋转两次,代码如下.close:hover::before{
-webkit-animation: spin 1s linear 1s 2;
animation: spin 1s linear 1s 2;
}
(2)alternate参数。animation动画中加⼊反向播放参数alternate。在加⼊该参数后,动画将在偶数次数时反向播放动画。
.close:hover::before{
-webkit-animation: spin 1s linear 1s 2 alternate;
animation: spin 1s linear 1s 2 alternate;
}
animation属性参数中,延迟参数是我们较为常⽤的⼀种参数。当动画的对象为多个时,我们常常⽤延迟参数来形成动画序列。如以下代码定义了5个不同的图标:
<span class="close icon-suningliujinyun">Close</span>
<span class="close icon-shousuo">Close</span>
<span class="close icon-zhankai">Close</span>
<span class="close icon-diaoyonglian">Close</span>
<span class="close icon-lingshouyun">Close</span>
图标的基本样式和之前的Close图标⼀致,不同之处在于此处的图标都设置为inline-block,使它们能够横向排列。代码如下:
.close{
font-size:0px;/*使span中的⽂字不显⽰*/
cursor:pointer;/*使⿏标指针显⽰为⼿型*/
display:inline-block;
width:100px;
height:100px;
line-height:100px;
border-radius:50%;/*使背景形状显⽰为圆形*/
background:#FFF;
color:#8b8ab3;
text-align:center;
}
.close::before{
font-family: 'suningcloud';
speak:none; /*使⽂本内容不能通过屏幕阅读器等辅助设备读取*/
font-size:48px;
display:block;
}
初始化的时候展⽰,如下图所⽰;
接下来,为图标添加animation动画,使图标初始位置向下偏移-100%,然后再向上移动回到初始位置,在此过程中同时使图标由完全透明变化为完全不透明
.close{
font-size:0px;/*使span中的⽂字不显⽰*/
cursor:pointer;/*使⿏标指针显⽰为⼿型*/
display:inline-block;
width:100px;
height:100px;
line-height:100px;
border-radius:50%;/*使背景形状显⽰为圆形*/
background:#FFF;
color:#8b8ab3;
text-align:center;
/**/
-webkit-animation: moving 1s linear;
animation: moving 1s linear;
}
@-webkit-keyframes moving {
from {
opacity: 0;
-webkit-transform: translateY(100%);
}
to {
opacity: 1;
-webkit-transform: translateY(0%);
}
}
@keyframes moving {
from {
opacity: 0;
transform: translateY(100%);
}
to {
opacity: 1;
transform: translateY(0%);
}
}
以上5个图标的动画效果都是同时进⾏的,为了使图标运动带有先后顺序,我们将为每个动画添加延迟。和之前运⽤的⽅法所不同,我们可以直接通过animation-delay属性来设置animation动画延迟,代码如下:
.icon-suningliujinyun{
-webkit-animation-delay:0s;
animation-delay: 0s;
}
.icon-shousuo{
-webkit-animation-delay:.1s;
animation-delay: .1s;
}
.icon-zhankai{
-webkit-animation-delay:.2s;
animation-delay: .2s;
}
.icon-diaoyonglian{
-webkit-animation-delay:.3s;
animation-delay: .3s;
}
.icon-lingshouyun{
-webkit-animation-delay:.4s;
animation-delay: .4s;
}
在以上代码中,我们设置了5个图标的延迟时间分别为0、0.1、0.2、0.3和0.4s。实际上,延迟0秒为默认值,因此第⼀个图标实际上也不需要设置延迟代码。测试页⾯,动画效果如图所⽰。
⾥⾯我刷新了两次,发现最开头,⼏个图标将在顶部⼀闪⽽过。这个算bug
css特效文字造成这个bug原因:在于除第⼀个图标外,其余图标都有⼀定的动画延迟,⽽在动画没有开始时,图标是没有发⽣偏移,也是完全不透明的,只有当动画开始的那⼀瞬间,图标才会切换到完全透明且偏移的动画起始状态。
解决办法:需要使⽤animation动画的animation-fill-mode属性。这⼀属性规定了元素在动画时间之外的状态是怎样的。若该值为forwards,则表⽰动画完成后保留最后⼀个关键帧中的属性值,该值为backwards时则恰好相反,表⽰在动画延迟之前就使得元素应⽤第⼀个关键帧中的属性值,⽽该值为both时则表⽰同时包含forwards和backwards两种设置。在本例中,我们使⽤backward或both均可,
.close{
font-size:0px;/*使span中的⽂字不显⽰*/
cursor:pointer;/*使⿏标指针显⽰为⼿型*/
display:inline-block;
width:100px;
height:100px;
line-height:100px;
border-radius:50%;/*使背景形状显⽰为圆形*/
background:#FFF;
color:#8b8ab3;
text-align:center;
/**/
-webkit-animation: moving 1s linear;
animation: moving 1s linear;
/*清除抖动*/
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
效果如下图所⽰:
PS:在animation中也可以像transition动画那样设置速度曲线
⽐如实现:在本例中我们希望图标的运动带有⼀点弹性效果,即图标向上运动时,并⾮减速并停⽌在终点,⽽是到达终点后继续向上运动,超过⼀定距离后再反⽅向运动回到终点,形成⼀种往复的效果。
我们当然可以使⽤帧动画来实现这样的效果,但是如果使⽤速度曲线将更为简便。要使⽤⾃定义曲线,我们往往需要⼀些⼯具,因为CSS3动画使⽤了三次贝塞尔(Cubic Bezier)数学函数来⽣成速度曲线,⽽这个函数的参数并不直观。我们可以使⽤诸如这样的站点来可视化地调整速度曲线。
接下来,我们就能够将该速度曲线写⼊animation属性的参数中,代码如下:
.close{
font-size:0px;/*使span中的⽂字不显⽰*/
cursor:pointer;/*使⿏标指针显⽰为⼿型*/
display:inline-block;
width:100px;
height:100px;
line-height:100px;
border-radius:50%;/*使背景形状显⽰为圆形*/
background:#FFF;
color:#8b8ab3;
text-align:center;
/**/
/*-webkit-animation: moving 1s linear;
animation: moving 1s linear;*/
/
*cubic-bezier*/
-webkit-animation:moving 1s cubic-bezier(.62,-0.91,.45,1.97);
animation:moving 1s cubic-bezier(.62,-0.91,.45,1.97);
/*清除抖动*/
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
效果如下图所⽰:
欢迎访问:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。