ball-scale.css 755 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*========================================================
  2. DARK LAYOUT
  3. =========================================================*/
  4. @-webkit-keyframes ball-scale {
  5. 0% {
  6. transform: scale(0);
  7. }
  8. 100% {
  9. transform: scale(1);
  10. opacity: 0;
  11. }
  12. }
  13. @keyframes ball-scale {
  14. 0% {
  15. transform: scale(0);
  16. }
  17. 100% {
  18. transform: scale(1);
  19. opacity: 0;
  20. }
  21. }
  22. .ball-scale > div {
  23. background-color: #b8c2cc;
  24. width: 15px;
  25. height: 15px;
  26. border-radius: 100%;
  27. margin: 2px;
  28. -webkit-animation-fill-mode: both;
  29. animation-fill-mode: both;
  30. display: inline-block;
  31. height: 60px;
  32. width: 60px;
  33. -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
  34. animation: ball-scale 1s 0s ease-in-out infinite;
  35. }