Skip to content

Instantly share code, notes, and snippets.

@zelbov
Created December 27, 2019 03:10
Show Gist options
  • Save zelbov/8a932c9639226adf2aeae35c6cd3386c to your computer and use it in GitHub Desktop.
Save zelbov/8a932c9639226adf2aeae35c6cd3386c to your computer and use it in GitHub Desktop.
Fade In / Fade Out (CSS3)
[js-animate="fadeout"] {
transition: opacity .5s ease-out, height .5s;
-o-transition: opacity .5s ease-out, height .5s;
-moz-transition: opacity .5s ease-out, height .5s;
-webkit-transition: opacity .5s ease-out, height .5s;
opacity: 0; height: 0px !important;
}
[js-animate="fadein"] {
transition: opacity .5s ease-out, height .5s;
-o-transition: opacity .5s ease-out, height .5s;
-moz-transition: opacity .5s ease-out, height .5s;
-webkit-transition: opacity .5s ease-out, height .5s;
opacity: 1;
height: inherit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment