Skip to content

Instantly share code, notes, and snippets.

@JezDriver
Last active March 29, 2023 01:19
Show Gist options
  • Select an option

  • Save JezDriver/dc7c09cb1a5190a6fd083506a4bd06b3 to your computer and use it in GitHub Desktop.

Select an option

Save JezDriver/dc7c09cb1a5190a6fd083506a4bd06b3 to your computer and use it in GitHub Desktop.
A versatile keyframe animation configured using css variables #css
@keyframes fadeInX {
from {
opacity: 0;
transform: translateX(var(--fadeInDist, 1rem));
}
to {
opacity: 1;
transform: translateX(0);
}
}
.example {
--fadeInXDist: -3rem;
animation: fadeInX 1s ease;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment