/*
Snippet using CSS to generate an infinite spiral shape
*/
@keyframes spiral {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.spiral {
width: 50px;
height: 50px;
background-color: #000;
border-radius: 50%;
clip-path: polygon(50% 0, 100% 100%, 0 100%);
animation: spiral 10s infinite;
}