.trap, .triangle {
stroke:#FEC558;
stroke-width:0.5;
fill:none;
}
.circle {
fill:none;
stroke:#FEC558;
stroke-dashoffset:138.5;
stroke-dasharray:138.5;
animation: circle_stroke 2s ease-in forwards;
}
@keyframes circle_stroke {
0% {
stroke-dashoffset: 138.5;
}
100% {
stroke-dashoffset: 0;
}
}
.trap {
stroke-dashoffset:60;
stroke-dasharray:60;
animation:trap_stroke 2s ease-in-out forwards, trap_fill ease-in 3s forwards;
}
@keyframes trap_stroke {
0% {
stroke-dashoffset: 60.5;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes trap_fill {
0% {
fill: none;
}
100% {
fill: #FEC558;
}
}
.triangle {
stroke-dashoffset:35.5;
stroke-dasharray:35.5;
animation: triangle_stroke 1s ease-in-out forwards, triangle_fill 3.5s ease-in forwards;
}
@keyframes triangle_stroke {
0% {
stroke-dashoffset: 35.5;
}
100% {
stroke-dashoffset: 0;
}
}
@keyframes triangle_fill {
0% {
fill: none;
}
100% {
fill: #FEC558;;
}
}
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30%" height="30%" viewBox="0 0 47.4 47.7" style="enable-background:new 0 0 47.4 47.7;" xml:space="preserve">
<defs>
<linearGradient id="grad" x1="0%" y1="0%" x2="0%" y2="100%" >
<stop offset="0%" stop-color="#33363D"/>
<stop offset="100%" stop-color="#5B5D5A"/>
</lineargradient>
</defs>
<rect width="100%" height="100%" fill="url(#grad)"/>
<path class="circle" d="M23.7,45.8c12.1,0,22-9.9,22-22c0-12.1-9.9-22-22-22c-12.1,0-22,9.9-22,22C1.7,35.9,11.6,45.8,23.7,45.8z"/>
<path class="trap" d="M14.1,17.9 14.1,20.2 14.1,22.2 14.1,23.4 14.1,24.7 14.1,27.6 32.7,35.2 32.7,32.5 32.7,30.7 32.7,29.7 32.7,28.5 32.7,25.2z" />
<path class="triangle" d="M19.2,18.7 24.3,20.6 27.5,21.9 27.5,21.2 27.5,19.4 27.5,17.5 27.5,16.3 27.5,15.2 27.5,12.5 15.5,17.2 19.2,18.7"/>
</svg>