ball-scale-ripple.css 392 B

1234567891011121314151617
  1. @keyframes ball-scale-ripple {
  2. 0% {
  3. transform: scale(0.1);
  4. opacity: 1; }
  5. 70% {
  6. transform: scale(1);
  7. opacity: 0.7; }
  8. 100% {
  9. opacity: 0.0; } }
  10. .ball-scale-ripple > div {
  11. animation-fill-mode: both;
  12. height: 50px;
  13. width: 50px;
  14. border-radius: 100%;
  15. border: 2px solid #55595c;
  16. animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8); }