loading14.css 759 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .spinner14 {
  2. width: 40px;
  3. height: 40px;
  4. display: inline-block;
  5. position: relative;
  6. }
  7. .double-bounce1,
  8. .double-bounce2 {
  9. width: 100%;
  10. height: 100%;
  11. border-radius: 50%;
  12. background-color: #42b983;//可修改颜色
  13. opacity: 0.6;
  14. position: absolute;
  15. top: 0;
  16. left: 0;
  17. -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  18. animation: sk-bounce 2.0s infinite ease-in-out;
  19. }
  20. .double-bounce2 {
  21. -webkit-animation-delay: -1.0s;
  22. animation-delay: -1.0s;
  23. }
  24. @-webkit-keyframes sk-bounce {
  25. 0%,
  26. 100% {
  27. -webkit-transform: scale(0.0)
  28. }
  29. 50% {
  30. -webkit-transform: scale(1.0)
  31. }
  32. }
  33. @keyframes sk-bounce {
  34. 0%,
  35. 100% {
  36. transform: scale(0.0);
  37. -webkit-transform: scale(0.0);
  38. }
  39. 50% {
  40. transform: scale(1.0);
  41. -webkit-transform: scale(1.0);
  42. }
  43. }