Skip to content

Instantly share code, notes, and snippets.

@JoeTheDave
Created July 1, 2016 11:22
Show Gist options
  • Save JoeTheDave/84b4b456d867060ecf57ff147593f661 to your computer and use it in GitHub Desktop.
Save JoeTheDave/84b4b456d867060ecf57ff147593f661 to your computer and use it in GitHub Desktop.
.box {
background-color: yellow;
border: solid 1px black;
height: 100px;
width: 100px;
opacity: 1.0;
box-sizing: border-box;
transition: height 500ms 0ms, opacity 500ms 500ms;
}
.box.hide {
transition: height 500ms 500ms, opacity 500ms 0ms;
opacity: 0.0;
height: 0px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment