Skip to content

Instantly share code, notes, and snippets.

@mkk360
Created November 9, 2023 04:29
Show Gist options
  • Select an option

  • Save mkk360/7e9d2c8bce77f4f83c54e677117f75d2 to your computer and use it in GitHub Desktop.

Select an option

Save mkk360/7e9d2c8bce77f4f83c54e677117f75d2 to your computer and use it in GitHub Desktop.
//3D Hover Image Effect
.hover-img:hover img {
transform: scale3d(1.1,1.1,1.1);
transition: all 2s cubic-bezier(.3,1,.35,2) 0s;
}
.hover-img .img-style img {
width: 100%;
object-fit: cover;
transition: all 1s cubic-bezier(.3,1,.35,1) 0s;
transition: transform .5s ease;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment