Crossfade fonctionnel

This commit is contained in:
2015-10-29 09:36:42 +01:00
parent 6ec432dab7
commit 5f4f49f2b6
2 changed files with 26 additions and 14 deletions

View File

@ -319,22 +319,13 @@ html, body {
/* Animations */
.crossfade-enter {
opacity: 0.01;
}
.crossfade-enter.crossfade-enter-active {
opacity: 1;
transition: opacity 250ms ease-in;
}
.example-leave {
.crossfade-leave {
opacity: 1;
}
.crossfade-leave.crossfade-leave-active {
opacity: 0.01;
transition: opacity 250ms ease-in;
transition: opacity 500ms ease-in-out;
}
.pulse {