Skip to content

Instantly share code, notes, and snippets.

@dallasbpeters
Created August 20, 2013 17:19
Show Gist options
  • Save dallasbpeters/6284427 to your computer and use it in GitHub Desktop.
Save dallasbpeters/6284427 to your computer and use it in GitHub Desktop.
p {
padding:.5em;
margin:1em;
-webkit-animation: target-fade 3s 1;
-moz-animation: target-fade 3s 1;
}
@-webkit-keyframes target-fade {
0% { background-color: rgba(239,203,96,0); }
30% { background-color: rgba(239,203,96,.4); }
100% { background-color: rgba(239,203,96,0); }
}
@-moz-keyframes target-fade {
0% { background-color: rgba(239,203,96,0); }
30% { background-color: rgba(239,203,96,.7); }
100% { background-color: rgba(239,203,96,0); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment