loading3.css 650 B

123456789101112131415161718192021222324252627282930313233343536
  1. .lds-facebook {
  2. display: inline-block;
  3. position: relative;
  4. width: 64px;
  5. height: 64px;
  6. }
  7. .lds-facebook view {
  8. display: inline-block;
  9. position: absolute;
  10. left: 6px;
  11. width: 13px;
  12. background: #42b983;//可修改颜色
  13. animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  14. }
  15. .lds-facebook view:nth-child(1) {
  16. left: 6px;
  17. animation-delay: -0.24s;
  18. }
  19. .lds-facebook view:nth-child(2) {
  20. left: 26px;
  21. animation-delay: -0.12s;
  22. }
  23. .lds-facebook view:nth-child(3) {
  24. left: 45px;
  25. animation-delay: 0;
  26. }
  27. @keyframes lds-facebook {
  28. 0% {
  29. top: 6px;
  30. height: 51px;
  31. }
  32. 50%, 100% {
  33. top: 19px;
  34. height: 26px;
  35. }
  36. }