05.09.2022, 10:21
Hello
How to make this CSS Spin Work for Read only objects
Its work for non read only objects
How to make this CSS Spin Work for Read only objects
Its work for non read only objects
Code:
/* CSS Spin Animation with JS */
.spin-animation.ok-a.ok-b {
animation: spin 0.5s infinite linear;
}
@keyframes spin {
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}
Best Regards,