loading9.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .lds-grid {
  2. display: inline-block;
  3. position: relative;
  4. width: 64px;
  5. height: 64px;
  6. }
  7. .lds-grid view {
  8. position: absolute;
  9. width: 13px;
  10. height: 13px;
  11. border-radius: 50%;
  12. background: #42b983;//可修改颜色
  13. animation: lds-grid 1.2s linear infinite;
  14. }
  15. .lds-grid view:nth-child(1) {
  16. top: 6px;
  17. left: 6px;
  18. animation-delay: 0s;
  19. }
  20. .lds-grid view:nth-child(2) {
  21. top: 6px;
  22. left: 26px;
  23. animation-delay: -0.4s;
  24. }
  25. .lds-grid view:nth-child(3) {
  26. top: 6px;
  27. left: 45px;
  28. animation-delay: -0.8s;
  29. }
  30. .lds-grid view:nth-child(4) {
  31. top: 26px;
  32. left: 6px;
  33. animation-delay: -0.4s;
  34. }
  35. .lds-grid view:nth-child(5) {
  36. top: 26px;
  37. left: 26px;
  38. animation-delay: -0.8s;
  39. }
  40. .lds-grid view:nth-child(6) {
  41. top: 26px;
  42. left: 45px;
  43. animation-delay: -1.2s;
  44. }
  45. .lds-grid view:nth-child(7) {
  46. top: 45px;
  47. left: 6px;
  48. animation-delay: -0.8s;
  49. }
  50. .lds-grid view:nth-child(8) {
  51. top: 45px;
  52. left: 26px;
  53. animation-delay: -1.2s;
  54. }
  55. .lds-grid view:nth-child(9) {
  56. top: 45px;
  57. left: 45px;
  58. animation-delay: -1.6s;
  59. }
  60. @keyframes lds-grid {
  61. 0%, 100% {
  62. opacity: 1;
  63. }
  64. 50% {
  65. opacity: 0.5;
  66. }
  67. }