0%
OneHub

Tutorial Code to rotate the member's image

New threads Top posters New members General forum statistics

    • Thread
      Forum
      Messages
      View
      Date
      By
      Last reply
  • Loading…
  • Loading…
  • Forum statistics

    Threads
    228
    Messages
    286
    Members
    11
    Latest member
    PuNkReAS
    Member time online
    1d 7h 42m
74 0 2

OneHub

SUPER ADMIN
Joined
Sep 3, 2025
Messages
267
Reaction score
17
5 MONTHS
5 MONTHS OF SERVICE
mage-1.gif

to install Copy the following code to the extra.less template
Code:
.avatar{
    width: 96px;
    height: 96px;
    border-radius: 4px;
    padding: 2px;
    transition: border-radius 1s ease;
    border: 1px solid hsl(205,54%,77%);
    &:hover {
        border-radius: 50% !important;
        animation: rotate 1s ease;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }

}
 

Trending content

Back
Top Bottom