Created
January 4, 2017 11:22
-
-
Save coderofsalvation/4b1ae97e8568b3180588d7cd3891d13e to your computer and use it in GitHub Desktop.
smooth blink css3
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
@keyframes fade { | |
from { opacity: 1.0; } | |
50% { opacity: 0.5; } | |
to { opacity: 1.0; } | |
} | |
@-webkit-keyframes fade { | |
from { opacity: 1.0; } | |
50% { opacity: 0.5; } | |
to { opacity: 1.0; } | |
} | |
.blink { | |
animation:fade 1000ms infinite; | |
-webkit-animation:fade 1000ms infinite; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment