blob: 4cedc5144d48b574af689c32ce7541b25022ae0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
.mblDissolve.mblOut {
-webkit-animation-duration: 1s;
-webkit-animation-name: mblDissolveOut;
-webkit-animation-timing-function: cubic-bezier(.25,1,.75,0);
}
.mblDissolve.mblIn {
-webkit-animation-duration: 1s;
-webkit-animation-name: mblDissolveIn;
-webkit-animation-timing-function: cubic-bezier(.25,1,.75,0);
}
@-webkit-keyframes mblDissolveOut {
from { opacity: 1; }
to { opacity: 0; }
}
@-webkit-keyframes mblDissolveIn {
from { opacity: 0; }
to { opacity: 1; }
}
|