Skip to content

Instantly share code, notes, and snippets.

@JoeTheDave
Last active June 30, 2016 02:44
Show Gist options
  • Save JoeTheDave/876881f0e16d2809f9bbf78b22212527 to your computer and use it in GitHub Desktop.
Save JoeTheDave/876881f0e16d2809f9bbf78b22212527 to your computer and use it in GitHub Desktop.
.example-component {
width: 100px;
height: 100px;
background-color: red;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
opacity: 0;
visibility: hidden;
}
.example-component.show {
opacity: 1;
visibility: visible;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment