Skip to content

Instantly share code, notes, and snippets.

@SquidDev
Created November 18, 2015 12:13
Show Gist options
  • Select an option

  • Save SquidDev/618d4e48b1cec146debf to your computer and use it in GitHub Desktop.

Select an option

Save SquidDev/618d4e48b1cec146debf to your computer and use it in GitHub Desktop.
* {
animation-name: example;
animation-duration: 10s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
/* Standard syntax */
@keyframes example {
0% {transform:rotate(0deg)}
100% {transform:rotate(360deg)}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment