You are here

pulse.css in Ajax loader 7

Same filename and directory in other branches
  1. 8 css/pulse.css
.ajax-throbber.sk-spinner-pulse {
    position: inherit;
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
    animation: sk-pulseScaleOut 1s infinite ease-in-out;
}

@-webkit-keyframes sk-pulseScaleOut {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes sk-pulseScaleOut {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

File

css/pulse.css
View source
  1. .ajax-throbber.sk-spinner-pulse {
  2. position: inherit;
  3. background-color: #333;
  4. border-radius: 100%;
  5. -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
  6. animation: sk-pulseScaleOut 1s infinite ease-in-out;
  7. }
  8. @-webkit-keyframes sk-pulseScaleOut {
  9. 0% {
  10. -webkit-transform: scale(0);
  11. transform: scale(0);
  12. }
  13. 100% {
  14. -webkit-transform: scale(1);
  15. transform: scale(1);
  16. opacity: 0;
  17. }
  18. }
  19. @keyframes sk-pulseScaleOut {
  20. 0% {
  21. -webkit-transform: scale(0);
  22. transform: scale(0);
  23. }
  24. 100% {
  25. -webkit-transform: scale(1);
  26. transform: scale(1);
  27. opacity: 0;
  28. }
  29. }