CSS3 animation动画
1、@keyframes 定义关键帧动画
2、animation-name 动画名称
3、animation-duration 动画时间
4、animation-timing-function 动画曲线
linear 匀速
ease 开始和结束慢速
ease-in 开始是慢速
ease-out 结束时慢速
ease-in-out 开始和结束时慢速
steps 动画步数
5、animation-delay 动画延迟
6、animation-iteration-count 动画播放次数 n|infinite
7、animation-direction
normal 默认动画结束不返回
Alternate 动画结束后返回
8、animation-play-state 动画状态
paused 停止
running 运动
9、animation-fill-mode 动画前后的状态
none 不改变默认行为
forwards 当动画完成后,保持最后一个属性值(在最后一个关键帧中定义)
backwards 在 animation-delay 所指定的一段时间内,在动画显示之前,应用开始属性值(在第一个关键帧中定义)
both 向前和向后填充模式都被应用
10、animation:name duration timing-function delay iteration-count direction;同时设置多个属性
举例 等待条:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>进度条</title>
<style type="text/css">
.d{
width: 350px;
/*height: 130px;*/
border: 1px black solid;
margin: 50px auto;
}
.d1,.d2,.d3,.d4,.d5{
margin: 15px 20px;
border-radius: 10px;
}
.d1{
width: 30px;
height: 60px;
background-color: yellow;
float: left;
animation: moving 1s ease 50ms infinite;
}
.d2{
width: 30px;
height: 60px;
background-color: blue;
float: left;
animation: moving 1s ease 100ms infinite;
}
.d3{
width: 30px;
height: 60px;
background-color: red;
float: left;
animation: moving 1s ease 150ms infinite;
}
.d4{
width: 30px;
height: 60px;
background-color: green;
float: left;
animation: moving 1s ease 200ms infinite;
}
.d5{
width: 30px;
height: 60px;
background-color: orange;
float: left;
animation: moving 1s ease 300ms infinite;
}
@keyframes moving{
from{
transform: scaleY(1);
}
50%{
transform: scaleY(0.5);
}
100%{
transform: scaleY(1);
}
}
p{
text-align: center;
}
</style>
</head>
<body>
<div class="d">
<div class="d1"></div>
<div class="d2"></div>
<div class="d3"></div>
<div class="d4"></div>
<div class="d5"></div>
<p>正在加载</p>
</div>
</body>
</html>
效果: