Skip to content

Instantly share code, notes, and snippets.

@yoelnacho
Created March 28, 2017 01:46
Show Gist options
  • Save yoelnacho/ef50f487f85d762d04e31b5663c811b1 to your computer and use it in GitHub Desktop.
Save yoelnacho/ef50f487f85d762d04e31b5663c811b1 to your computer and use it in GitHub Desktop.
Animaciones para angular2 - pages
/* Animaciones */
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.fast {
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-fill-mode: both;
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