Skip to content

Instantly share code, notes, and snippets.

@irazasyed
Created November 5, 2018 04:01
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 irazasyed/18e823e6a081dd2cc88391627fd5d0d2 to your computer and use it in GitHub Desktop.
Save irazasyed/18e823e6a081dd2cc88391627fd5d0d2 to your computer and use it in GitHub Desktop.
Card Popup Effect CSS
.card {
transition: 0.5s;
backface-visibility: hidden;
transform: translateZ(0);
}
.card:hover {
box-shadow: 0 30px 70px #000;
transform: scale3d(1.05, 1.05, 1.05);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment