Skip to content

Instantly share code, notes, and snippets.

@IvanaSays
Last active August 9, 2017 12:40
Embed
What would you like to do?
7 - Performant Animations
@keyframes spin {
from {transform: rotate(0deg);}
to {transform: rotate(360deg);}
}
.box {
animation-name: spin;
animation-duration: 3ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment