Skip to content

Instantly share code, notes, and snippets.

@ggendre
Created December 14, 2011 10:21
Show Gist options
  • Save ggendre/1476027 to your computer and use it in GitHub Desktop.
Save ggendre/1476027 to your computer and use it in GitHub Desktop.
css animating popup apparition with css3
.popup{
transition-property: top;
transition-duration:2s;
top:-1000px
}
.popup.showing{
top:50px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment