Created
July 31, 2019 19:13
-
-
Save jbd91/bc7c383ff58d1373abc21500f0fcc368 to your computer and use it in GitHub Desktop.
BG image zoom on hover
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
.parent { | |
overflow: hidden; | |
&:hover { | |
.child { | |
transform: scale3d(1.1,1.1,1); | |
} | |
} | |
} | |
.child { | |
height: 215px; | |
background-position: center center; | |
background-repeat: no-repeat; | |
background-size: cover; | |
transition: opacity 1s,transform 1s,-webkit-transform 1s; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment