0%
OneHub

Tutorial Code to rotate the member's image

137 0 2

OneHub

SUPER ADMIN
Joined
Sep 3, 2025
Messages
273
8 MONTHS
8 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)
    }

}
 
Back
Top Bottom