.sk-fading-circle { $circleCount: 12; $animationDuration: 1.2s; margin: $spinkit-spinner-margin; width: $spinkit-size; height: $spinkit-size; position: relative; .sk-circle { width: 100%; height: 100%; position: absolute; left: 0; top: 0; } .sk-circle:before { content: ''; display: block; margin: 0 auto; width: 15%; height: 15%; background-color: $spinkit-spinner-color; border-radius: 100%; animation: sk-circleFadeDelay $animationDuration infinite ease-in-out both; } @for $i from 2 through $circleCount { .sk-circle#{$i} { transform: rotate(360deg / $circleCount * ($i - 1)); } } @for $i from 2 through $circleCount { .sk-circle#{$i}:before { animation-delay: - $animationDuration + $animationDuration / $circleCount * ($i - 1); } } } @keyframes sk-circleFadeDelay { 0%, 39%, 100% { opacity: 0 } 40% { opacity: 1 } }