Spin Animation In Css Code Example


Example: css spinning animation


/* How to use : <div class="spinning"></div>*/

.spinning {
animation-name: spin;
animation-duration: 1500ms; /* How long lasts 1 turn */
animation-iteration-count: infinite;
animation-timing-function: linear;
}

@keyframes spin {
from {
transform:rotate(0deg);
}
to {
transform:rotate(360deg);
}
}

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy