Skip to content

Instantly share code, notes, and snippets.

@davidgjordan
Created August 12, 2017 00:34
Show Gist options
  • Save davidgjordan/04c5e7085812bc29e3ad2d799d5d395f to your computer and use it in GitHub Desktop.
Save davidgjordan/04c5e7085812bc29e3ad2d799d5d395f to your computer and use it in GitHub Desktop.
Animade FadeIn Css
/*Animaciones*/
.animated {
animation-duration: 1s;
animation-fill-mode: both;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
animation-name: fadeIn;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment