Не могу понять, почему элемент g не анимируется
#circle{
width:100px;
height:100px;
position:relative;
animation-name:ex2;
animation-duration:4s;
animation-iteration-count:2;
}
@keyframes ex2{
0% {left:0px; top:0px;}
50% {left:200px; top:0px;}
100%{left:0px; top:0px;}
}
<g id="circle">
<circle class="st1" cx="320" cy="567.5" r="136"/>
</g>
Я пробовал встроенный метод, а также тег объекта, и ни один из них не работает.