Skip to content

Instantly share code, notes, and snippets.

@naturallucky
Last active May 11, 2019 20:40
Show Gist options
  • Save naturallucky/58c7145ac34600a40948d85e7b5bb519 to your computer and use it in GitHub Desktop.
Save naturallucky/58c7145ac34600a40948d85e7b5bb519 to your computer and use it in GitHub Desktop.
animation: 5s linear 2s infinite normal forward myanime-type;
animation: 9s ease-out 0s 1 normal forward myanime-type;
animation: 5s ease-in-out 2s infinite alternate both myanime-type;
/* aliternate: animation direction , both: animation fill type*/
@keyframes myanime-type { 0% { left: 20pt; } 100% { left: 100pt; } }
@keyframes myanime-type {
0% { left: 20pt; }
50% { left: 20pt; }
100% { left: 100pt; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment