Created
July 1, 2016 11:22
-
-
Save JoeTheDave/84b4b456d867060ecf57ff147593f661 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
.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