css3 允许我们创建动画,用于可以取代许多网页动画图像,Flash 动画 和 JavaScript 动画
要创建 CSS3 动画,我们首先要了解 @keyframes 规则
@keyframes 规则内指定一个 CSS 样式和动画将逐步从目前的样式更改为新的样式
下表中的数字表示支持该属性的第一个浏览器版本号
紧跟在 -webkit-, -ms- 或 -moz- 前的数字为支持该前缀属性的第一个浏览器版本号
属性 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
@keyframes | 43.0 4.0 -webkit- |
10.0 | 16.0 5.0 -moz- |
9.0 4.0 -webkit- |
30.0 15.0 -webkit- 12.0 -o- |
animation | 43.0 4.0 -webkit- |
10.0 | 16.0 5.0 -moz- |
9.0 4.0 -webkit- |
30.0 15.0 -webkit- 12.0 -o- |
@keyframes myfirst
{
from {background: red;}
to {background: yellow;}
}
@-webkit-keyframes myfirst /* Safari 与 Chrome */
{
from {background: red;}
to {background: yellow;}
}
使用 @keyframes 创建动画之后,需要把它绑定到一个选择器,否则动画不会有任何效果
指定至少这两个 CSS3 的动画属性绑定向一个选择器
设置动画的名称
设置动画的时长
下面的范例把 "myfirst" 动画捆绑到 div 元素,时长:5 秒
div
{
animation: myfirst 5s;
-webkit-animation: myfirst 5s; /* Safari 与 Chrome */
}
必须定义动画的名称和动画的持续时间
如果省略的持续时间,动画将无法运行,因为默认值是 0
CSS3 动画是使元素从一种样式逐渐变化为另一种样式的效果
我们可以改变任意多的样式任意多的次数
请用百分比来设置变化发生的时间,或用关键词 "from" 和 "to",等同于 0% 和 100%
0% 是动画的开始,100% 是动画的完成
为了得到最佳的浏览器支持,我们应该始终定义 0% 和 100% 选择器
当动画为 25% 及 50% 时改变背景色,然后当动画 100% 完成时再次改变
@keyframes myfirst
{
0% {background: red;}
25% {background: yellow;}
50% {background: blue;}
100% {background: green;}
}
@-webkit-keyframes myfirst /* Safari 与 Chrome */
{
0% {background: red;}
25% {background: yellow;}
50% {background: blue;}
100% {background: green;}
}
改变背景色和位置
@keyframes myfirst
{
0% {background: red; left:0px; top:0px;}
25% {background: yellow; left:200px; top:0px;}
50% {background: blue; left:200px; top:200px;}
75% {background: green; left:0px; top:200px;}
100% {background: red; left:0px; top:0px;}
}
@-webkit-keyframes myfirst /* Safari 与 Chrome */
{
0% {background: red; left:0px; top:0px;}
25% {background: yellow; left:200px; top:0px;}
50% {background: blue; left:200px; top:200px;}
75% {background: green; left:0px; top:200px;}
100% {background: red; left:0px; top:0px;}
}
下表列出了 @keyframes 规则和所有动画属性
属性 | 描述 |
---|---|
@keyframes | 设置动画 |
animation | 所有动画属性的简写属性,除了 animation-play-state 属性 |
animation-name | 设置 @keyframes 动画的名称 |
animation-duration | 设置动画完成一个周期所花费的秒或毫秒。默认是 0 |
animation-timing-function | 设置动画的速度曲线。默认是 "ease" |
animation-delay | 设置动画何时开始。默认是 0 |
animation-iteration-count | 设置动画被播放的次数。默认是 1 |
animation-direction | 设置动画是否在下一周期逆向地播放。默认是 "normal" |
animation-play-state | 设置动画是否正在运行或暂停。默认是 "running" |
下面的两个范例设置所有动画属性
运行 myfirst 动画,设置所有的属性
div
{
animation-name: myfirst;
animation-duration: 5s;
animation-timing-function: linear;
animation-delay: 2s;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-play-state: running;
/* Safari 与 Chrome: */
-webkit-animation-name: myfirst;
-webkit-animation-duration: 5s;
-webkit-animation-timing-function: linear;
-webkit-animation-delay: 2s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: alternate;
-webkit-animation-play-state: running;
}
与上面的动画相同,但是使用了简写的动画 animation 属性
div
{
animation: myfirst 5s linear 2s infinite alternate;
/* Safari 与 Chrome: */
-webkit-animation: myfirst 5s linear 2s infinite alternate;
}