Skip to content

Instantly share code, notes, and snippets.

@matthieu-D
Last active July 12, 2017 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthieu-D/ffd22b979e297724c94a9fc9ce9a7da7 to your computer and use it in GitHub Desktop.
Save matthieu-D/ffd22b979e297724c94a9fc9ce9a7da7 to your computer and use it in GitHub Desktop.
@keyframes fivePhasesFadeIn {
0% {opacity: 1}
25% {opacity: 0.25}
50% {opacity: 0.5}
75% {opacity: 0.75}
100% {opacity: 1}
}
.fivePhasesFadeIn {
animation-name: fivePhasesFadeIn;
animation-duration: 4s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment