Skip to content

Instantly share code, notes, and snippets.

@cypherkunp
Last active September 8, 2019 13:37
Show Gist options
  • Select an option

  • Save cypherkunp/2ae7a8794dcecf3ca6a34c1074d493b2 to your computer and use it in GitHub Desktop.

Select an option

Save cypherkunp/2ae7a8794dcecf3ca6a34c1074d493b2 to your computer and use it in GitHub Desktop.
Card Transition Effects
.card-container {
cursor: pointer;
-moz-osx-font-smoothing: grayscale;
backface-visibility: hidden;
transform: translateZ(0);
transition: transform 0.25s ease-out;
}
.card-container:hover {
transform: scale(1.05);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment