loading15.css 1019 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .spinner15 {
  2. width: 50px;
  3. height: 40px;
  4. display: inline-block;
  5. text-align: center;
  6. font-size: 10px;
  7. }
  8. .spinner15 > view {
  9. background-color: #42b983;//可修改颜色
  10. height: 100%;
  11. width: 6px;
  12. display: inline-block;
  13. -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  14. animation: sk-stretchdelay 1.2s infinite ease-in-out;
  15. }
  16. .spinner15 .rect2 {
  17. -webkit-animation-delay: -1.1s;
  18. animation-delay: -1.1s;
  19. }
  20. .spinner15 .rect3 {
  21. -webkit-animation-delay: -1.0s;
  22. animation-delay: -1.0s;
  23. }
  24. .spinner15 .rect4 {
  25. -webkit-animation-delay: -0.9s;
  26. animation-delay: -0.9s;
  27. }
  28. .spinner15 .rect5 {
  29. -webkit-animation-delay: -0.8s;
  30. animation-delay: -0.8s;
  31. }
  32. @-webkit-keyframes sk-stretchdelay {
  33. 0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  34. 20% { -webkit-transform: scaleY(1.0) }
  35. }
  36. @keyframes sk-stretchdelay {
  37. 0%, 40%, 100% {
  38. transform: scaleY(0.4);
  39. -webkit-transform: scaleY(0.4);
  40. } 20% {
  41. transform: scaleY(1.0);
  42. -webkit-transform: scaleY(1.0);
  43. }
  44. }