This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

CSS Spin
#1
Hello 
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,
Reply


Messages In This Thread
CSS Spin - by khalil - 05.09.2022, 10:21
RE: CSS Spin - by admin - 05.09.2022, 10:26
RE: CSS Spin - by khalil - 05.09.2022, 10:34
RE: CSS Spin - by khalil - 11.09.2022, 08:45
RE: CSS Spin - by admin - 12.09.2022, 12:00
RE: CSS Spin - by khalil - 12.09.2022, 14:13
RE: CSS Spin - by admin - 13.09.2022, 09:55
RE: CSS Spin - by khalil - 14.09.2022, 06:51

Forum Jump: