thatのようにアニメーションを作成したいと思います。しかし、それは必要なように見えません。ここに私のcodeのフィドルがあります。助けてください。cicrle animation with css
.effect-1 {
position: relative;
height: 100px;
width: 100px;
margin: 100px;
border-radius: 50%;
display: block;
text-align: center;
line-height: 100px;
background-color: black;
}
.effect-1::after {
position: absolute;
top: -10px;
left: -10px;
height: 100%;
width: 100%;
padding: 10px;
border-radius: 50%;
box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.8);
transform: scale(0.7, 0.7);
transition: all 0.2s;
}