The user can upload 40 files via drag and drop. The designer wants a spinning wheel for each item. I'm using css animation, but I wonder if there is a more efficient way to reduce rendering work for the browser.
CSS
@keyframes spinning {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}