Вероятно, вы используете фильтры SVG.
Кажется, они мало что делают. Попробуйте удалить их. Также есть путь клипа, который также довольно бесполезен.
*{
padding:0;
margin:0;
}
body{
background-color: #161616;
}
#stroke_small{
animation-name: s_small;
animation-duration: .5s;
animation-direction: alternate;
animation-timing-function: ease-in-out;
animation-fill-mode: forwards;
transform-origin: center;
will-change: transform,opacity,rotate;
transform:translate3d(0,0,0);
}
#stroke_big{
animation-name: s_big;
animation-duration: .6s;
animation-direction: alternate;
animation-timing-function: ease-in-out;
animation-fill-mode: forwards;
transform-origin: center;
will-change: transform,opacity,rotate;
transform:translate3d(0,0,0);
}
@keyframes s_small {
0%{
transform: scale(0) rotate(90deg);
opacity:0;
}
95%{
transform: scale(1.2) rotate(90deg);
}
100%{
transform: scale(1) rotate(90deg);
opacity: 1;
}
}
@keyframes s_big {
0%{
transform: scale(0);
opacity: 0;
}
80%{
transform: scale(1.4);
opacity: 0.3;
}
100%{
transform: scale(1);
opacity: 1;
}
}
#wrap{
height: 500px;
transform: translate(0,50%);
}
svg{
height: 100%;
width: 100%;
}
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css"/>
<script type="text/javascript" src="jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="js.js"></script>
</head>
<body>
<div id="wrap">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 150 150" width="150" height="150">
<g>
<circle cx="75" cy="75" r="57" id="stroke_big" fill="transparent" stroke-width="14" stroke-dasharray="1,34" stroke="rgb(255,255,255)" stroke-linejoin="bevel" stroke-linecap="butt" stroke-miterlimit="3"/>
<circle vector-effect="non-scaling-stroke" cx="75" cy="75" r="50" id="stroke_big" fill="none"/>
</g>
<g>
<circle cx="75" cy="75" r="52" id="stroke_small" fill="transparent" stroke-width="4" stroke-dasharray="1,62" stroke="rgb(255,255,255)" stroke-linejoin="bevel" stroke-linecap="butt" stroke-miterlimit="3"/>
<circle vector-effect="non-scaling-stroke" cx="75" cy="75" r="50" id="stroke_small" fill="none"/>
</g>
</svg>
</div>
</body>
</html>