关于新手小白10分钟入门教程操作 CSS动画(animation)

通过“CSS过渡”部分的学习,transition属性可以实现简单的过渡动画,但过渡动画只能指定开始和结束状态,整个过程由特定函数控制,灵活性不高。本节介绍更复杂的动画—— animation。

要创建 CSS 动画,您首先需要了解 @keyframes 规则,@keyframes 规则用来定义动画各个阶段的属性值,类似于 flash 动画中的关键帧,语法格式如下:

  1. @keyframes animationName {
  2. from {
  3. properties: value;
  4. }
  5. percentage {
  6. properties: value;
  7. }
  8. to {
  9. properties: value;
  10. }
  11. }
  12. // 或者
  13. @keyframes animationName {
  14. 0% {
  15. properties: value;
  16. }
  17. percentage {
  18. properties: value;
  19. }
  20. 100% {
  21. properties: value;
  22. }
  23. }

语法说明如下:

  • animationName:表示动画的名称;
  • from:定义动画的开头,相当于 0%;
  • percentage:定义动画的各个阶段,为百分比值,可以添加多个;
  • to:定义动画的结尾,相当于 100%;
  • properties:不同的样式属性名称,例如 color、left、width 等等。

下面我们来看一个简单的 @keyframes 规则示例:

  1. @keyframes ball {
  2. 0% { top: 0px; left: 0px;}
  3. 25% { top: 0px; left: 350px;}
  4. 50% { top: 200px; left: 350px;}
  5. 75% { top: 200px; left: 0px;}
  6. 100% { top: 0px; left: 0px;}
  7. }

动画创建好后,还需要将动画应用到指定的 HTML 元素。要将动画应用到指定的 HTML 元素需要借助 CSS 属性,CSS 中提供了如下所示的动画属性:

  • animation-name:设置需要绑定到元素的动画名称;
  • animation-duration:设置完成动画所需要花费的时间,单位为秒或毫秒,默认为 0;
  • animation-timing-function:设置动画的速度曲线,默认为 ease;
  • animation-fill-mode:设置当动画不播放时(动画播放完或延迟播放时)的状态;
  • animation-delay:设置动画开始之前的延迟时间,默认为 0;
  • animation-iteration-count:设置动画被播放的次数,默认为 1;
  • animation-direction:设置是否在下一周期逆向播放动画,默认为 normal;
  • animation-play-state:设置动画是正在运行还是暂停,默认是 running;
  • animation:所有动画属性的简写属性。

下面就来详细介绍一下上述属性的使用。

animation-name

animation-name 属性用来将动画绑定到指定的 HTML 元素,属性的可选值如下:

描述
keyframename 要绑定到 HTML 元素的动画名称,可以同时绑定多个动画,动画名称之间使用逗号进行分隔
none 表示无动画效果,

示例代码如下:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. @keyframes ball {
  6. 0% { top: 0px; left: 0px;}
  7. 25% { top: 0px; left: 350px;}
  8. 50% { top: 200px; left: 350px;}
  9. 75% { top: 200px; left: 0px;}
  10. 100% { top: 0px; left: 0px;}
  11. }
  12. div {
  13. width: 100px;
  14. height: 100px;
  15. border-radius: 50%;
  16. border: 3px solid black;
  17. position: relative;
  18. animation-name: ball;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div></div>
  24. </body>
  25. </html>

注意:要想让动画成功播放,您还需要定义 animation-duration 属性,否则会因为 animation-duration 属性的默认值为 0,导致动画并不会播放。

animation-duration

animation-duration 属性用来设置动画完成一个周期所需要花费的时间,单位为秒或者毫秒。示例代码如下:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. @keyframes ball {
  6. 0% { top: 0px; left: 0px;}
  7. 25% { top: 0px; left: 350px;}
  8. 50% { top: 200px; left: 350px;}
  9. 75% { top: 200px; left: 0px;}
  10. 100% { top: 0px; left: 0px;}
  11. }
  12. div {
  13. width: 100px;
  14. height: 100px;
  15. border-radius: 50%;
  16. border: 3px solid black;
  17. position: relative;
  18. animation-name: ball;
  19. animation-duration: 2s;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div></div>
  25. </body>
  26. </html>

运行结果如下图所示:

110H04F1-0
图:animation-duration 属性演示

提示:动画若想成功播放,必须要定义 animation-name 和 animation-duration 属性。

animation-timing-function

animation-timing-function 属性用来设置动画播放的速度曲线,通过速度曲线的设置可以使动画播放的更为平滑。animation-timing-function 属性的可选值如下表所示:

描述
linear 动画从开始到结束的速度是相同的
ease 默认值,动画以低速开始,然后加快,在结束前变慢
ease-in 动画以低速开始
ease-out 动画以低速结束
ease-in-out 动画以低速开始,并以低速结束
cubic-bezier(n, n, n, n) 使用 cubic-bezier() 函数来定义动画的播放速度,参数的取值范围为 0 到 1 之间的数值

示例代码如下:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. @keyframes ball {
  6. 0% {left: 0px;}
  7. 50% {left: 350px;}
  8. 100% {left: 0px;}
  9. }
  10. div {
  11. width: 100px;
  12. height: 100px;
  13. border-radius: 50%;
  14. border: 3px solid black;
  15. text-align: center;
  16. line-height: 100px;
  17. position: relative;
  18. animation-name: ball;
  19. animation-duration: 2s;
  20. }
  21. .one {
  22. animation-timing-function: ease;
  23. }
  24. .two {
  25. animation-timing-function: ease-in;
  26. }
  27. .three {
  28. animation-timing-function: ease-out;
  29. }
  30. .four {
  31. animation-timing-function: ease-in-out;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <div class=“one”>ease</div>
  37. <div class=“two”>ease-in</div>
  38. <div class=“three”>ease-out</div>
  39. <div class=“four”>ease-in-out</div>
  40. </body>
  41. </html>

运行结果如下图所示:

110H04454-1
图:animation-timing-function 属性演示

animation-fill-mode

animation-fill-mode 属性用来设置当动画不播放时(开始播放之前或播放结束之后)动画的状态(样式),属性的可选值如下:

描述
none 不改变动画的默认行为
forwards 当动画播放完成后,保持动画最后一个关键帧中的样式
backwards 在 animation-delay 所指定的时间段内,应用动画第一个关键帧中的样式
both 同时遵循 forwards 和 backwards 的规则

示例代码如下:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. @keyframes box {
  6. 0% {transform: rotate(0);}
  7. 50% {transform: rotate(0.5turn);}
  8. 100% {transform: rotate(1turn);}
  9. }
  10. div {
  11. width: 100px;
  12. height: 100px;
  13. border-radius: 50%;
  14. float: left;
  15. border: 3px solid black;
  16. text-align: center;
  17. line-height: 100px;
  18. position: relative;
  19. animation-name: box;
  20. animation-duration: 2s;
  21. animation-iteration-count: 1;
  22. animation-fill-mode: forwards;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div>forwards</div>
  28. </body>
  29. </html>

animation-delay

animation-delay 属性用来定义动画开始播放前的延迟时间,单位为秒或者毫秒,属性的语法格式如下:

animation-delay: time;

其中参数 time 就是动画播放前的延迟时间,参数 time 既可以为正值也可以为负值。参数值为正时,表示延迟指定时间开始播放;参数为负时,表示跳过指定时间,并立即播放动画。

示例代码如下:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. @keyframes ball {
  6. 0% {left: 0px;}
  7. 50% {left: 350px;}
  8. 100% {left: 0px;}
  9. }
  10. div {
  11. width: 100px;
  12. height: 100px;
  13. border-radius: 50%;
  14. border: 3px solid black;
  15. text-align: center;
  16. line-height: 100px;
  17. position: relative;
  18. animation-name: ball;
  19. animation-duration: 2s;
  20. }
  21. .one {
  22. animation-delay: 0.5s;
  23. }
  24. .two {
  25. animation-delay: -0.5s;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class=“one”>0.5s</div>
  31. <div class=“two”>-0.5s</div>
  32. </body>
  33. </html>

运行结果如下图所示:

110H05S4-2
图:animation-delay 属性演示

animation-iteration-count

animation-iteration-count 属性用来定义动画播放的次数,属性的可选值如下:

描述
n 使用具体数值定义动画播放的次数,默认值为 1
infinite 表示动画无限次播放

示例代码如下:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. @keyframes box {
  6. 0% {transform: rotate(0);}
  7. 50% {transform: rotate(0.5turn);}
  8. 100% {transform: rotate(1turn);}
  9. }
  10. div {
  11. width: 100px;
  12. height: 100px;
  13. float: left;
  14. border: 3px solid black;
  15. text-align: center;
  16. line-height: 100px;
  17. position: relative;
  18. animation-name: box;
  19. animation-duration: 2s;
  20. }
  21. .one {
  22. animation-iteration-count: 1;
  23. }
  24. .two {
  25. margin-left: 50px;
  26. animation-iteration-count: infinite;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div class=“one”>1</div>
  32. <div class=“two”>infinite</div>
  33. </body>
  34. </html>

运行结果如下图所示:

110H05511-3
图:animation-iteration-count 属性演示

animation-direction

animation-direction 属性用来设置是否轮流反向播放动画,属性的可选值如下:

描述
normal 以正常的方式播放动画
reverse 以相反的方向播放动画
alternate 播放动画时,奇数次(1、3、5 等)正常播放,偶数次(2、4、6 等)反向播放
alternate-reverse 播放动画时,奇数次(1、3、5 等)反向播放,偶数次(2、4、6 等)正常播放

示例代码如下:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. @keyframes box {
  6. 0% {transform: rotate(0);}
  7. 50% {transform: rotate(0.5turn);}
  8. 100% {transform: rotate(1turn);}
  9. }
  10. div {
  11. width: 100px;
  12. height: 100px;
  13. float: left;
  14. border: 3px solid black;
  15. text-align: center;
  16. line-height: 100px;
  17. position: relative;
  18. animation-name: box;
  19. animation-duration: 2s;
  20. animation-iteration-count: infinite;
  21. }
  22. .one {
  23. animation-direction: reverse;
  24. }
  25. .two {
  26. margin-left: 50px;
  27. animation-direction: alternate;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div class=“one”>reverse</div>
  33. <div class=“two”>alternate</div>
  34. </body>
  35. </html>

运行结果如下图所示:

110H055P-4
图:animation-direction 属性演示

animation-play-state

animation-play-state 属性用来设置动画是播放还是暂停,属性的可选值如下:

描述
paused 暂停动画的播放
running 正常播放动画

示例代码如下:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. @keyframes box {
  6. 0% {transform: rotate(0);}
  7. 50% {transform: rotate(0.5turn);}
  8. 100% {transform: rotate(1turn);}
  9. }
  10. div {
  11. width: 100px;
  12. height: 100px;
  13. float: left;
  14. border: 3px solid black;
  15. text-align: center;
  16. line-height: 100px;
  17. position: relative;
  18. animation-name: box;
  19. animation-duration: 2s;
  20. animation-iteration-count: infinite;
  21. }
  22. .one {
  23. animation-play-state: running;
  24. }
  25. .two {
  26. margin-left: 50px;
  27. animation-play-state: paused;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div class=“one”>running</div>
  33. <div class=“two”>paused</div>
  34. </body>
  35. </html>

运行结果如下图所示:

110H031P-5
图:animation-play-state 属性演示

animation

animation 属性是 animation-name、animation-duration、animation-timing-function、animation-delay、animation-iteration-count、animation-direction、animation-fill-mode、animation-play-state 几个属性的简写形式,通过 animation 属性可以同时定义上述的多个属性,语法格式如下:

animation: animation-name animation-duration animation-timing-function animation-delay animation-iteration-count animation-direction animation-fill-mode animation-play-state;

其中每个参数分别对应上面介绍的各个属性,如果省略其中的某个或多个值,则将使用该属性对应的默认值。

示例代码如下:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. @keyframes box {
  6. 0% {transform: rotate(0);}
  7. 50% {transform: rotate(0.5turn);}
  8. 100% {transform: rotate(1turn);}
  9. }
  10. div {
  11. width: 100px;
  12. height: 100px;
  13. border-radius: 50%;
  14. float: left;
  15. border: 3px solid black;
  16. text-align: center;
  17. line-height: 100px;
  18. position: relative;
  19. animation: box 2s linear 0s infinite alternate;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24. <div>animation</div>
  25. </body>
  26. </html>

运行结果如下图所示:

110H05962-6
图:animation 属性演示
© 版权声明
THE END
喜欢就支持一下吧
点赞5 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容