loading1.css 571 B

1234567891011121314151617181920212223242526272829303132333435
  1. .lds-circle {
  2. display: inline-block;
  3. transform: translateZ(1px);
  4. }
  5. .lds-circle>view {
  6. display: inline-block;
  7. width: 51px;
  8. height: 51px;
  9. margin: 6px;
  10. border-radius: 50%;
  11. background: #42b983; //可修改颜色
  12. animation: lds-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  13. }
  14. @keyframes lds-circle {
  15. 0%,
  16. 100% {
  17. animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  18. }
  19. 0% {
  20. transform: rotateY(0deg);
  21. }
  22. 50% {
  23. transform: rotateY(1800deg);
  24. animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  25. }
  26. 100% {
  27. transform: rotateY(3600deg);
  28. }
  29. }