Skip to content

Instantly share code, notes, and snippets.

@jbd91
Created July 31, 2019 19:13
Show Gist options
  • Save jbd91/bc7c383ff58d1373abc21500f0fcc368 to your computer and use it in GitHub Desktop.
Save jbd91/bc7c383ff58d1373abc21500f0fcc368 to your computer and use it in GitHub Desktop.
BG image zoom on hover
.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