loading17.css 556 B

12345678910111213141516171819202122232425262728293031323334
  1. .spinner17 {
  2. width: 40px;
  3. height: 40px;
  4. display: inline-block;
  5. background-color: #42b983; //可修改颜色
  6. border-radius: 100%;
  7. -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  8. animation: sk-scaleout 1.0s infinite ease-in-out;
  9. }
  10. @-webkit-keyframes sk-scaleout {
  11. 0% {
  12. -webkit-transform: scale(0)
  13. }
  14. 100% {
  15. -webkit-transform: scale(1.0);
  16. opacity: 0;
  17. }
  18. }
  19. @keyframes sk-scaleout {
  20. 0% {
  21. -webkit-transform: scale(0);
  22. transform: scale(0);
  23. }
  24. 100% {
  25. -webkit-transform: scale(1.0);
  26. transform: scale(1.0);
  27. opacity: 0;
  28. }
  29. }