Skip to content

Instantly share code, notes, and snippets.

@hauntedhost
Created November 14, 2014 21:00
Show Gist options
  • Select an option

  • Save hauntedhost/266ff190da00e7dd4a38 to your computer and use it in GitHub Desktop.

Select an option

Save hauntedhost/266ff190da00e7dd4a38 to your computer and use it in GitHub Desktop.
slowly fade out background color
.target-fade {
-webkit-animation: target-fade 10s 1;
-moz-animation: target-fade 10s 1;
}
@-webkit-keyframes target-fade {
0% { background-color: rgba(80, 173, 118, .1); }
100% { background-color: rgba(80, 173, 118, 0); }
}
@-moz-keyframes target-fade {
0% { background-color: rgba(80, 173, 118, .1); }
100% { background-color: rgba(80, 173, 118, 0); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment