loading19.css 839 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .spinner19 {
  2. display: inline-block;
  3. width: 70px;
  4. text-align: center;
  5. }
  6. .spinner19 > view {
  7. width: 18px;
  8. height: 18px;
  9. background-color: #42b983;//可修改颜色
  10. border-radius: 100%;
  11. display: inline-block;
  12. -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  13. animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  14. }
  15. .spinner19 .bounce1 {
  16. -webkit-animation-delay: -0.32s;
  17. animation-delay: -0.32s;
  18. }
  19. .spinner19 .bounce2 {
  20. -webkit-animation-delay: -0.16s;
  21. animation-delay: -0.16s;
  22. }
  23. @-webkit-keyframes sk-bouncedelay {
  24. 0%, 80%, 100% { -webkit-transform: scale(0) }
  25. 40% { -webkit-transform: scale(1.0) }
  26. }
  27. @keyframes sk-bouncedelay {
  28. 0%, 80%, 100% {
  29. -webkit-transform: scale(0);
  30. transform: scale(0);
  31. } 40% {
  32. -webkit-transform: scale(1.0);
  33. transform: scale(1.0);
  34. }
  35. }