Skip to content

Instantly share code, notes, and snippets.

@JoseRosarioOS
Created February 15, 2017 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save JoseRosarioOS/7ca82dbfb61b6263f14e2e7b09b158c1 to your computer and use it in GitHub Desktop.
Save JoseRosarioOS/7ca82dbfb61b6263f14e2e7b09b158c1 to your computer and use it in GitHub Desktop.
FLIP_CSS
.element.collapsed {
height: 90px;
width: 100%;
}
.element.expanded {
top: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 3;
}
.expanding.transition {
transition: transform 230ms ease-out ;
}
.collapsing.transition {
transition: transform 180ms ease-in;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment