Skip to content

Instantly share code, notes, and snippets.

@caroso1222
Created August 12, 2017 03:06
Show Gist options
  • Save caroso1222/78e840bd4483e9a8113a0d3bd3c36dac to your computer and use it in GitHub Desktop.
Save caroso1222/78e840bd4483e9a8113a0d3bd3c36dac to your computer and use it in GitHub Desktop.
Animations
@keyframes fade-in-right {
from {
opacity: 0;
transform: translateX(-15px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes grow-left {
from {
transform: scaleX(0);
}
to {
transform: scaleX(1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment