Skip to content

Instantly share code, notes, and snippets.

@jezell
Last active March 10, 2017 11:43
Show Gist options
  • Save jezell/4bb228d53c4180d044a3ed7f12fbcfad to your computer and use it in GitHub Desktop.
Save jezell/4bb228d53c4180d044a3ed7f12fbcfad to your computer and use it in GitHub Desktop.
Slide in animation
.slide-in {
animation: slide-in .5s forwards;
overflow: hidden;
}
@keyframes slide-in {
from {
max-height: 0px;
}
99.9% {
max-height: 100vh;
}
to {
max-height: 100000vh;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment