Created
November 9, 2023 04:29
-
-
Save mkk360/7e9d2c8bce77f4f83c54e677117f75d2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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