Skip to content

Instantly share code, notes, and snippets.

@StMotorSpark
Created April 9, 2020 13:41
Show Gist options
  • Select an option

  • Save StMotorSpark/e51766f56918769890663c6af2886834 to your computer and use it in GitHub Desktop.

Select an option

Save StMotorSpark/e51766f56918769890663c6af2886834 to your computer and use it in GitHub Desktop.
Adding in the fade in animation keyframes
@keyframes animateFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fadeIn {
animation: animateFadeIn 0.8s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment