Skip to content

Instantly share code, notes, and snippets.

@PhilipWestfall
Last active June 5, 2019 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PhilipWestfall/5e557b16cfa15c17b5de12461775e79c to your computer and use it in GitHub Desktop.
Save PhilipWestfall/5e557b16cfa15c17b5de12461775e79c to your computer and use it in GitHub Desktop.
h3 {
animation-duration: 8s;
animation-name: slidein;
animation-iteration-count: infinite;
}
@keyframes slidein {
0% {
margin-left: 0%;
}
50% {
margin-left: 300px;
}
100% {
margin-left: 0%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment