Skip to content

Instantly share code, notes, and snippets.

@dara
Created September 18, 2016 18:47
Show Gist options
  • Save dara/119e0968f7c57baf6fdd3f515f7f47e2 to your computer and use it in GitHub Desktop.
Save dara/119e0968f7c57baf6fdd3f515f7f47e2 to your computer and use it in GitHub Desktop.
/* Extracted from Animate.css */
.animated {
-webkit-animation-duration: 0.6s;
animation-duration: 0.6s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes fadeInUpMicro {
from {
opacity: 0;
-webkit-transform: translate3d(0, 50px, 0);
transform: translate3d(0, 50px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpMicro {
from {
opacity: 0;
-webkit-transform: translate3d(0, 50px, 0);
transform: translate3d(0, 50px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpMicro {
-webkit-animation-name: fadeInUpMicro;
animation-name: fadeInUpMicro;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment