Skip to content

Instantly share code, notes, and snippets.

@daybrush
Created October 29, 2018 16:16
Show Gist options
  • Save daybrush/dbfd5c262d10080f96c89ab664d7519e to your computer and use it in GitHub Desktop.
Save daybrush/dbfd5c262d10080f96c89ab664d7519e to your computer and use it in GitHub Desktop.
.animate {
animation-name: keyframes1;
animation-duration: 4;
animation-iteration-count: 3;
animation-timing-function: ease-in-out;
}
@keyframes keyframes1 {
0% {
left: 0%;
}
50% {
left: 50%;
}
100% {
left: 30%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment