@-webkit-keyframes loadingAni { 0% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 320; } } @keyframes loadingAni { 0% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 320; } } .esPlayerPureLoading { position: absolute; top: 50%; left: 50%; width: 40px; height: 40px; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); -webkit-animation: loadingani 1s infinite linear; animation: loadingAni 1s infinite linear; stroke: currentColor; stroke-width: 2px; }