@-webkit-keyframes ball-grid-pulse { 0% { -webkit-transform : scale(1); transform : scale(1); } 50% { -webkit-transform : scale(0.5); transform : scale(0.5); opacity : 0.7; } 100% { -webkit-transform : scale(1); transform : scale(1); opacity : 1; } } @keyframes ball-grid-pulse { 0% { -webkit-transform : scale(1); transform : scale(1); } 50% { -webkit-transform : scale(0.5); transform : scale(0.5); opacity : 0.7; } 100% { -webkit-transform : scale(1); transform : scale(1); opacity : 1; } } .ball-grid-pulse { width : 57px; } .ball-grid-pulse > div:nth-child(1) { -webkit-animation-delay : 0.2s; animation-delay : 0.2s; -webkit-animation-duration : 1.2s; animation-duration : 1.2s; } .ball-grid-pulse > div:nth-child(2) { -webkit-animation-delay : 0.29s; animation-delay : 0.29s; -webkit-animation-duration : 1.6s; animation-duration : 1.6s; } .ball-grid-pulse > div:nth-child(3) { -webkit-animation-delay : 0.57s; animation-delay : 0.57s; -webkit-animation-duration : 1.56s; animation-duration : 1.56s; } .ball-grid-pulse > div:nth-child(4) { -webkit-animation-delay : 0.28s; animation-delay : 0.28s; -webkit-animation-duration : 0.77s; animation-duration : 0.77s; } .ball-grid-pulse > div:nth-child(5) { -webkit-animation-delay : 0.01s; animation-delay : 0.01s; -webkit-animation-duration : 0.99s; animation-duration : 0.99s; } .ball-grid-pulse > div:nth-child(6) { -webkit-animation-delay : 0.68s; animation-delay : 0.68s; -webkit-animation-duration : 0.9s; animation-duration : 0.9s; } .ball-grid-pulse > div:nth-child(7) { -webkit-animation-delay : 0.64s; animation-delay : 0.64s; -webkit-animation-duration : 1.23s; animation-duration : 1.23s; } .ball-grid-pulse > div:nth-child(8) { -webkit-animation-delay : 0.65s; animation-delay : 0.65s; -webkit-animation-duration : 0.71s; animation-duration : 0.71s; } .ball-grid-pulse > div:nth-child(9) { -webkit-animation-delay : 0.65s; animation-delay : 0.65s; -webkit-animation-duration : 1.05s; animation-duration : 1.05s; } .ball-grid-pulse > div { background-color : #6B6F82; width : 15px; height : 15px; border-radius : 100%; margin : 2px; -webkit-animation-fill-mode : both; animation-fill-mode : both; display : inline-block; float : right; -webkit-animation-name : ball-grid-pulse; animation-name : ball-grid-pulse; -webkit-animation-iteration-count : infinite; animation-iteration-count : infinite; -webkit-animation-delay : 0; animation-delay : 0; }