Created
April 6, 2016 04:27
-
-
Save Inggo-inHomePortal/32753b84c5ba7656eab883e986459783 to your computer and use it in GitHub Desktop.
Blink Keyframes
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
@-webkit-keyframes blink_f { | |
0% { | |
opacity: 1.0 | |
} | |
7% { | |
opacity: 0.4 | |
} | |
14% { | |
opacity: 1.0 | |
} | |
100% { | |
opacity: 1.0 | |
} | |
} | |
@keyframes blink_f { | |
0% { | |
opacity: 1.0 | |
} | |
7% { | |
opacity: 0.4 | |
} | |
14% { | |
opacity: 1.0 | |
} | |
100% { | |
opacity: 1.0 | |
} | |
} | |
@-webkit-keyframes blink { | |
0% { | |
opacity: 0.0; | |
-webkit-transform: translateY(-7px) | |
} | |
7% { | |
opacity: 0.3; | |
-webkit-transform: translateY(0px) | |
} | |
35% { | |
opacity: 0.0; | |
-webkit-transform: translateY(7px) | |
} | |
100% { | |
opacity: 0.0; | |
-webkit-transform: translateY(7px) | |
} | |
} | |
@keyframes blink { | |
0% { | |
opacity: 0.0; | |
transform: translateY(-7px) | |
} | |
7% { | |
opacity: 0.3; | |
transform: translateY(0px) | |
} | |
35% { | |
opacity: 0.0; | |
transform: translateY(7px) | |
} | |
100% { | |
opacity: 0.0; | |
transform: translateY(7px) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment