Created
November 14, 2014 21:00
-
-
Save hauntedhost/266ff190da00e7dd4a38 to your computer and use it in GitHub Desktop.
slowly fade out background color
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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