Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

rotate icon

.rotate {
    animation: rotation 1s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
Source by cssf1.com #
 
PREVIOUS NEXT
Tagged: #rotate #icon
ADD COMMENT
Topic
Name
2+7 =