Skip to content

Instantly share code, notes, and snippets.

@nimaparsi
Forked from manfromanotherland/mfp-fade.css
Created May 26, 2015 12:38
Show Gist options
  • Save nimaparsi/632ea97855d028346a69 to your computer and use it in GitHub Desktop.
Save nimaparsi/632ea97855d028346a69 to your computer and use it in GitHub Desktop.
.mfp-fade.mfp-bg {
opacity: 0;
background: #000;
transition: all .3s;
}
.mfp-fade.mfp-bg.mfp-ready { opacity: .9; }
.mfp-fade.mfp-bg.mfp-removing { opacity: 0; }
.mfp-fade.mfp-wrap .mfp-content {
opacity: 0;
transition: all .3s;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content { opacity: 1; }
.mfp-fade.mfp-wrap.mfp-removing .mfp-content { opacity: 0; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment