本文重点:介绍css3动画的知识点以及案例(两个以上),动画和transition过渡的区别
css3动画
通过 CSS3,我们能够创建动画,这可以在许多网页中取代动画图片、Flash 动画以及 JavaScript。
gif动态图片比较浪费资源,我们可以使用动画使静态图片动起来。
关键帧的定义
不同于过渡动画只能定义首尾两个状态,关键帧动画可以定义多个状态,或者用关键帧的话来说,过渡动画只能定义第一帧和最后一帧这两个关键帧,而关键帧动画则可以定义任意多的关键帧,因而能实现更复杂的动画效果。
@keyframes mymove{
from{初始状态属性}
to{结束状态属性}
}
或
@keyframes mymove{
0%{初始状态属性}
50%(中间再可以添加关键帧)
100%{结束状态属性}
}
animation
- animation-name
- 检索或设置对象所应用的动画名称
- 必须与规则@keyframes配合使用,eg:@keyframes mymove{} animation-name:mymove;
- animation-duration
- 检索或设置对象动画的持续时间
- 说明:animation-duration:3s; 动画完成使用的时间为3s
- animation-timing-function
- 检索或设置对象动画的过渡类型
- 属性值
- linear:线性过渡。等同于贝塞尔曲线(0.0, 0.0, 1.0, 1.0)
- ease:平滑过渡。等同于贝塞尔曲线(0.25, 0.1, 0.25, 1.0)
- ease-in:由慢到快。等同于贝塞尔曲线(0.42, 0, 1.0, 1.0)
- ease-out:由快到慢。等同于贝塞尔曲线(0, 0, 0.58, 1.0)
- ease-in-out:由慢到快再到慢。等同于贝塞尔曲线(0.42, 0, 0.58, 1.0)
- step-start:马上跳到动画每一结束桢的状态
- animation-delay
- 检索或设置对象动画延迟的时间
- 说明:animation-delay:0.5s; 动画开始前延迟的时间为0.5s)
- animation-iteration-count
- 检索或设置对象动画的循环次数
- 属性值
- animation-iteration-count: infinite | number;
- infinite:无限循环
- number: 循环的次数
- animation-direction
- 检索或设置对象动画在循环中是否反向运动
- 属性值
- normal:正常方向
- reverse:反方向运行
- alternate:动画先正常运行再反方向运行,并持续交替运行
- alternate-reverse:动画先反运行再正方向运行,并持续交替运行
- animation-play-state
- 检索或设置对象动画的状态
- 属性值
- animation-play-state:running | paused;
- running:运动
- paused: 暂停
- animation-play-state:paused; 当鼠标经过时动画停止,鼠标移开动画继续执行
简写
animation:动画名称 动画持续时间 动画的过渡类型 延迟的时间 定义循环次数 定义动画方式
animation vs transition
- 相同点:都是随着时间改变元素的属性值。
- 不同点:transition需要触发一个事件(hover事件或click事件等)才会随时间改变其css属性;而animation在不需要触发任何事件的情况下也可以显式的随着时间变化来改变元素css的属性值,从而达到一种动画的效果,css3的animation就需要明确的动画属性值
第一个案例代码:原图如下
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box{
width: 180px;
height: 300px;
background: url(./images/bg.png);
margin: 100px auto;
animation:imgMore 1s step-start infinite ;
}
@keyframes imgMore {
0%{
background-position: 0 0;
}
14.3%{
background-position: -180px 0;
}
28.6%{
background-position: -360px 0;
}
42.9%{
background-position: -540px 0;
}
57.2%{
background-position: -720px 0;
}
71.5%{
background-position: -900px 0;
}
85.8%{
background-position: -1080px 0;
}
100%{
background-position: -1260px 0;
}
}
</style>
</head>
<body>
<div class="box">
</div>
</body>
</html>
第二个案例代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box{
height: 200px;
width: 150px;
margin: 100px auto;
position: relative;
}
.box div{
width: 50px;
height: 50px;
border: 1px blue solid;
border-radius: 100%;
position: absolute;
left: 0;right: 0;
top: 0;bottom: 0;
margin: auto;
transform:scale(0);
opacity: 0;
}
.box .box6{
width: 10px;
height: 10px;
background-color: blueviolet;
transform:scale(1);
opacity: 1;
}
.box1{
animation: boxMore 5s linear infinite;
}
.box2{
animation: boxMore 5s 1s linear infinite;
}
.box3{
animation: boxMore 5s 2s linear infinite;
}
.box4{
animation: boxMore 5s 3s linear infinite;
}
.box5{
animation: boxMore 5s 4s linear infinite;
}
@keyframes boxMore{
0%{
transform:scale(0);
opacity: 0;
}
25%{
transform:scale(1);
opacity: 0.5;
}
50%{
transform:scale(2);
opacity: 1;
}
75%{
transform:scale(3);
opacity: 0.5;
}
100%{
transform:scale(4);
opacity: 0;
}
}
</style>
</head>
<body>
<div class="box">
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
<div class="box4"></div>
<div class="box5"></div>
<div class="box6"></div>
</div>
</body>
</html>
如果感觉对自己有帮助,麻烦点一下关注,会一直盒大家分享知识的,谢谢!!!
所有程序员都是好编剧,所有计算机都是烂演员