Base crossfade + passage a React 0.14
This commit is contained in:
@ -59,8 +59,8 @@ html, body {
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.launcher .crossfade-image > .top,
|
||||
.launcher .crossfade-image > .bottom {
|
||||
.launcher .crossfade-image .top,
|
||||
.launcher .crossfade-image .bottom {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
@ -319,6 +319,24 @@ html, body {
|
||||
|
||||
/* Animations */
|
||||
|
||||
.crossfade-enter {
|
||||
opacity: 0.01;
|
||||
}
|
||||
|
||||
.crossfade-enter.crossfade-enter-active {
|
||||
opacity: 1;
|
||||
transition: opacity 250ms ease-in;
|
||||
}
|
||||
|
||||
.example-leave {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.crossfade-leave.crossfade-leave-active {
|
||||
opacity: 0.01;
|
||||
transition: opacity 250ms ease-in;
|
||||
}
|
||||
|
||||
.pulse {
|
||||
-webkit-animation: 1s pulse infinite;
|
||||
}
|
||||
|
Reference in New Issue
Block a user