Skip to content

Instantly share code, notes, and snippets.

@IvanaSays
Last active August 9, 2017 12:38
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 IvanaSays/d3057f19f8a4ada4e74392dca6dcaf69 to your computer and use it in GitHub Desktop.
Save IvanaSays/d3057f19f8a4ada4e74392dca6dcaf69 to your computer and use it in GitHub Desktop.
5 - Performant Animations
.box {
position: relative;
}
.box:before {
content: “”;
box-shadow: 1px 1px 1px rgb(0,0,0);
opacity: .5;
transition: .2s;
position: absolute;
width: 100%;
height: 100%;
}
.box.active:before {
opacity: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment