animation: ;
关键针动画 简写属性
需要配合@keyframes 使用
animation:
animation-name:执行动画名
animation-duration:执行动画的总时间 假设为4秒 设置的4帧的动画 没针执行的时间为 总时间/多少帧 4/4 也就是1秒
animation-timing-function:动画速度曲线

  1. ease(默认值) 慢-》 快-》慢<br /> linear 匀速的<br /> ease-in 慢速开始 慢-》快<br /> ease-out 慢速结束 快-》慢<br /> ease-in-out: 慢-》快-》慢<br /> cubic-bezier() 也可以设置贝塞尔曲线<br />steps() 会取消过度效果<br />edn 保留当前帧状态,直到这段动画时间结束<br />start 保留下一帧状态,直到这段动画时间结束<br /> <br /> animation-delay 动画的延迟时间<br /> 可以为负值 负值代表的是动画立即触发 并且跳过多少秒执行<br /> animation-iteration-count : 动画执行的次数<br /> infinite 无休止的运动<br /> animation-direction 动画运动的方向 是否做往返运动<br /> normal正常的0% - 100%<br /> reverse 反向的运动 100% - 0%<br /> alternate 正常的往返运动<br /> alternate-reverse 反向的往返运动<br /> animation-fill-mode 动画在静止状态的样式<br /> forwards: 动画停止在最后一个关键帧的位置 假设动画开始前背景色为红色,最后一帧的动画让其颜色为黑色,默认情况下动画执行完成回复原来的样子,设置这个属性会让其保留在最后一帧的样式<br /> backwards: 代表动画第一个关键帧立即作用 假设动画没开始前背景色为红色,第一帧的动画让其颜色变为黑色,这个属性会直接让其元素保留在第一帧动画的样式,也就背景色提前变为黑色<br /> both: 代表的是动画第一个关键帧立即作用并且动画停止在最后一个关键帧的位置<br /> animation: 关键帧动画 设置了就会立即的去执行 不关注子属性顺序的 <br /> 但是其中的动画执行时间和动画延迟时间相对顺序是不能变得<br /> 可以设置多个动画同时执行用“,”隔开

@keyframes

@keyframes里有两种写法 一种是百分数 另一种使用from代替0% to代替100% 除此之外没有其他写法

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. @keyframes move{
  9. 0%{
  10. left: 0;
  11. top: 0;
  12. }
  13. 25%{
  14. left: 100px;
  15. top: 0;
  16. }
  17. 50%{
  18. left: 100px;
  19. top: 100px;
  20. }
  21. 75%{
  22. left: 0;
  23. top: 100px;
  24. }
  25. 100%{
  26. left: 0;
  27. top: 0;
  28. }
  29. }
  30. @keyframes cor{
  31. from{
  32. background: black;
  33. }
  34. 50%{
  35. background: blue;
  36. }
  37. to{
  38. background: blueviolet;
  39. }
  40. }
  41. div{
  42. position: absolute;
  43. width: 100px;
  44. height: 100px;
  45. background: red;
  46. animation: move 4s linear 5s infinite , cor 3s linear infinite;
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <div></div>
  52. </body>
  53. </html>

step练习

打字效果

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. @keyframes cursor{
  9. 0%{
  10. border-left-color: rgba(0, 0, 0, 0);
  11. }
  12. 50%{
  13. border-left-color: rgba(0, 0, 0, 1);
  14. }
  15. 100%{
  16. border-left-color: rgba(0, 0, 0, 0);
  17. }
  18. }
  19. @keyframes cover{
  20. 0%{
  21. left: 0;
  22. }
  23. 100%{
  24. left: 100%;
  25. }
  26. }
  27. div{
  28. height: 100px;
  29. display: inline-block;
  30. font-size: 100px;
  31. line-height: 100px;
  32. font-family: monospace;
  33. position: relative;
  34. background-color: #f10;
  35. }
  36. div::after{
  37. content: "";
  38. position: absolute;
  39. height: 90px;
  40. width: 100%;
  41. background: #fff;
  42. left: 0;
  43. top: 10px;
  44. border-left: 2px solid #000;
  45. animation: cursor 1s steps(1,end) infinite , cover 5s steps(5,end) forwards;
  46. }
  47. </style>
  48. </head>
  49. <body>
  50. <div>asdff</div>
  51. </body>
  52. </html>

钟表效果

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. @keyframes second {
  9. 0% {
  10. transform: rotate(180deg);
  11. }
  12. 100% {
  13. transform: rotate(540deg);
  14. }
  15. }
  16. @keyframes minute {
  17. 0% {
  18. transform: rotate(180deg);
  19. }
  20. 100% {
  21. transform: rotate(540deg);
  22. }
  23. }
  24. @keyframes hour {
  25. 0% {
  26. transform: rotate(180deg);
  27. }
  28. 100% {
  29. transform: rotate(540deg);
  30. }
  31. }
  32. .clock {
  33. width: 512px;
  34. height: 512px;
  35. background: url(/img/clock.png);
  36. background-size: cover;
  37. background-repeat: no-repeat;
  38. position: relative;
  39. }
  40. .second {
  41. width: 16px;
  42. height: 278px;
  43. background: url(/img/second.png);
  44. background-size: cover;
  45. background-repeat: no-repeat;
  46. position: absolute;
  47. left: 247px;
  48. top: 180px;
  49. z-index: 3;
  50. transform-origin: center 76px;
  51. transform: rotate(180deg);
  52. animation: second 60s steps(60, end) infinite;
  53. }
  54. .minute {
  55. width: 32px;
  56. height: 218px;
  57. background: url(/img/minute.png);
  58. background-size: cover;
  59. background-repeat: no-repeat;
  60. position: absolute;
  61. left: 238px;
  62. top: 240px;
  63. z-index: 2;
  64. transform-origin: center 16px;
  65. transform: rotate(180deg);
  66. animation: minute 3600s steps(60, end) infinite;
  67. }
  68. .hour {
  69. width: 32px;
  70. height: 148px;
  71. background: url(/img/hour.png);
  72. background-size: cover;
  73. background-repeat: no-repeat;
  74. position: absolute;
  75. left: 238px;
  76. top: 240px;
  77. z-index: 1;
  78. transform-origin: center 16px;
  79. transform: rotate(180deg);
  80. animation: hour 43200s steps(12,end) infinite;
  81. }
  82. </style>
  83. </head>
  84. <body>
  85. <section class="clock">
  86. <div class="second"></div>
  87. <div class="minute"></div>
  88. <div class="hour"></div>
  89. </section>
  90. </body>
  91. </html>

跑马效果

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. @keyframes run{
  9. 0%{
  10. background-position: 0 0;
  11. }
  12. 100%{
  13. background-position: -2400px 0;
  14. }
  15. }
  16. .horse{
  17. width: 200px;
  18. height: 100px;
  19. background: url(/img/horse.png);
  20. background-position: 0 0;
  21. background-repeat: no-repeat;
  22. animation: run .5s steps(12,end) infinite;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div class="horse">
  28. </div>
  29. </body>
  30. </html>

stop所需的图片资源 ⬇
img.rar