6.animation.css 381 B

1234567891011121314151617181920212223242526272829
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. #box {
  6. width: 200px;
  7. height: 200px;
  8. background: #00f;
  9. animation: run 2s linear 1s infinite normal forwards running;
  10. }
  11. @keyframes run {
  12. form {
  13. width: 200px;
  14. }
  15. 10% {
  16. width: 100px;
  17. }
  18. 40% {
  19. width: 400px;
  20. }
  21. 80% {
  22. width: 800px;
  23. }
  24. to {
  25. width: 600px;
  26. }
  27. }