Skip to content

Instantly share code, notes, and snippets.

@khripunovpp
Last active April 9, 2017 07:40
Show Gist options
  • Select an option

  • Save khripunovpp/c2e21383c53184eb8ed3f31c9abad894 to your computer and use it in GitHub Desktop.

Select an option

Save khripunovpp/c2e21383c53184eb8ed3f31c9abad894 to your computer and use it in GitHub Desktop.
css-infinite-animation-keyframes
@-webkit-keyframes infinite {
0%, 100% {
-webkit-transform: translateX(0);
}
50% {
-webkit-transform: translateX(-100%);
}
}
@keyframes infinite {
0%, 100% {
transform: translateX(0);
}
50% {
transform: translateX(-100%);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment