1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
.rotate { display: inline-flex; } .isRotating { animation: rotating 3s infinite linear; animation-fill-mode: forwards; } @keyframes rotating { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }