ball-scale-ripple-multiple.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*========================================================
  2. DARK LAYOUT
  3. =========================================================*/
  4. @-webkit-keyframes ball-scale-ripple-multiple {
  5. 0% {
  6. transform: scale(0.1);
  7. opacity: 1;
  8. }
  9. 70% {
  10. transform: scale(1);
  11. opacity: 0.7;
  12. }
  13. 100% {
  14. opacity: 0;
  15. }
  16. }
  17. @keyframes ball-scale-ripple-multiple {
  18. 0% {
  19. transform: scale(0.1);
  20. opacity: 1;
  21. }
  22. 70% {
  23. transform: scale(1);
  24. opacity: 0.7;
  25. }
  26. 100% {
  27. opacity: 0;
  28. }
  29. }
  30. .ball-scale-ripple-multiple {
  31. position: relative;
  32. transform: translateY(-25px);
  33. }
  34. .ball-scale-ripple-multiple > div:nth-child(0) {
  35. -webkit-animation-delay: -0.8s;
  36. animation-delay: -0.8s;
  37. }
  38. .ball-scale-ripple-multiple > div:nth-child(1) {
  39. -webkit-animation-delay: -0.6s;
  40. animation-delay: -0.6s;
  41. }
  42. .ball-scale-ripple-multiple > div:nth-child(2) {
  43. -webkit-animation-delay: -0.4s;
  44. animation-delay: -0.4s;
  45. }
  46. .ball-scale-ripple-multiple > div:nth-child(3) {
  47. -webkit-animation-delay: -0.2s;
  48. animation-delay: -0.2s;
  49. }
  50. .ball-scale-ripple-multiple > div {
  51. -webkit-animation-fill-mode: both;
  52. animation-fill-mode: both;
  53. position: absolute;
  54. top: -2px;
  55. left: -26px;
  56. width: 50px;
  57. height: 50px;
  58. border-radius: 100%;
  59. border: 2px solid #b8c2cc;
  60. -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  61. animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
  62. }