Created
April 15, 2012 18:08
-
-
Save james2doyle/2394178 to your computer and use it in GitHub Desktop.
blink css3 animation
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
.blink { | |
opacity: 1; | |
animation: blink 0.5s 0 infinite alternate forwards ease-in; | |
} | |
@keyframes blink { | |
from { | |
opacity: 1; | |
} | |
to { | |
opacity: 0.4; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment