Skip to content

Instantly share code, notes, and snippets.

@glauberramos
Last active December 18, 2015 11:09
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 glauberramos/5773815 to your computer and use it in GitHub Desktop.
Save glauberramos/5773815 to your computer and use it in GitHub Desktop.
-webkit-animation-name: intro-right;
-webkit-animation-duration: 0.5s;
-webkit-animation-iteration-count: once;
-webkit-animation-timing-function: ease-out;
-webkit-animation-delay: 0s;
-webkit-animation-fill-mode: both;
-webkit-animation-name: intro-left;
-webkit-animation-duration: 0.5s;
-webkit-animation-iteration-count: once;
-webkit-animation-timing-function: ease-out;
-webkit-animation-delay: 0.3s;
-webkit-animation-fill-mode: both;
@-webkit-keyframes intro-right {
from {
-webkit-transform: translateX(-100px);
opacity: 0;
}
to {
-webkit-transform: translateX(0px);
opacity: 1;
}
}
@-webkit-keyframes intro-left {
from {
-webkit-transform: translateX(100px);
opacity: 0;
}
to {
-webkit-transform: translateX(0px);
opacity: 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment