Skip to content

Instantly share code, notes, and snippets.

@jeffscottward
Created August 5, 2019 16:09
Show Gist options
  • Save jeffscottward/09e1682c2dbf24afabcfa00622f25d4d to your computer and use it in GitHub Desktop.
Save jeffscottward/09e1682c2dbf24afabcfa00622f25d4d to your computer and use it in GitHub Desktop.
CSS3 Animation Fast Refrence
.loading {
animation: pulse .5s linear infinite;
}
@keyframes pulse {
from { background: white; }
to { background: red; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment