Skip to content

Instantly share code, notes, and snippets.

@JoeTheDave
Created July 1, 2016 03:06
Show Gist options
  • Save JoeTheDave/1f402d2836efc05c1b5bbcb8a64eb530 to your computer and use it in GitHub Desktop.
Save JoeTheDave/1f402d2836efc05c1b5bbcb8a64eb530 to your computer and use it in GitHub Desktop.
.todo-item {
width: 100px;
height: 100px;
background-color: red;
float: left;
border: solid 2px white;
box-sizing: border-box;
}
.example-enter {
opacity: 0.01;
width: 0px;
}
.example-enter.example-enter-active {
opacity: 1;
width: 100px;
transition: 700ms;
}
.example-leave {
opacity: 1;
width: 100px;
}
.example-leave.example-leave-active {
opacity: 0.01;
width: 0px;
transition: 700ms;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment