You are here

double-bounce.css in Ajax loader 8

Same filename and directory in other branches
  1. 7 css/double-bounce.css
.ajax-throbber.sk-double-bounce .sk-child {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
  animation: sk-doubleBounce 2s infinite ease-in-out;
}
.ajax-throbber.sk-double-bounce .sk-double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-doubleBounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  } }

@keyframes sk-doubleBounce {
  0%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  } }

File

css/double-bounce.css
View source
  1. .ajax-throbber.sk-double-bounce .sk-child {
  2. width: 100%;
  3. height: 100%;
  4. border-radius: 50%;
  5. background-color: #333;
  6. opacity: 0.6;
  7. position: absolute;
  8. top: 0;
  9. left: 0;
  10. -webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
  11. animation: sk-doubleBounce 2s infinite ease-in-out;
  12. }
  13. .ajax-throbber.sk-double-bounce .sk-double-bounce2 {
  14. -webkit-animation-delay: -1.0s;
  15. animation-delay: -1.0s;
  16. }
  17. @-webkit-keyframes sk-doubleBounce {
  18. 0%,
  19. 100% {
  20. -webkit-transform: scale(0);
  21. transform: scale(0);
  22. }
  23. 50% {
  24. -webkit-transform: scale(1);
  25. transform: scale(1);
  26. } }
  27. @keyframes sk-doubleBounce {
  28. 0%,
  29. 100% {
  30. -webkit-transform: scale(0);
  31. transform: scale(0);
  32. }
  33. 50% {
  34. -webkit-transform: scale(1);
  35. transform: scale(1);
  36. } }