You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.4 KiB
73 lines
1.4 KiB
.mblScaleOut.mblOut { |
|
-webkit-animation-duration: 0.5s; |
|
animation-duration: 0.5s; |
|
-webkit-animation-name: mblScaleOutOut; |
|
animation-name: mblScaleOutOut; |
|
-webkit-animation-timing-function: ease-in; |
|
animation-timing-function: ease-in; |
|
} |
|
.dj_android .mblScaleOut.mblOut { |
|
-webkit-animation-name: mblScaleOutOutAndroid; |
|
animation-name: mblScaleOutOutAndroid; |
|
} |
|
.mblScaleOut.mblIn { |
|
z-index: -100; |
|
-webkit-animation-duration: 0.5s; |
|
animation-duration: 0.5s; |
|
-webkit-animation-name: mblScaleOutIn; |
|
animation-name: mblScaleOutIn; |
|
-webkit-animation-timing-function: ease-in; |
|
animation-timing-function: ease-in; |
|
} |
|
@-webkit-keyframes mblScaleOutOut { |
|
from { |
|
-webkit-transform: scale(1); |
|
opacity: 1; |
|
} |
|
to { |
|
-webkit-transform: scale(0); |
|
opacity: 0; |
|
} |
|
} |
|
@keyframes mblScaleOutOut { |
|
from { |
|
transform: scale(1); |
|
opacity: 1; |
|
} |
|
to { |
|
transform: scale(0); |
|
opacity: 0; |
|
} |
|
} |
|
@-webkit-keyframes mblScaleOutOutAndroid { |
|
from { |
|
-webkit-transform: scale(1); |
|
} |
|
to { |
|
-webkit-transform: scale(0); |
|
} |
|
} |
|
@keyframes mblScaleOutOutAndroid { |
|
from { |
|
transform: scale(1); |
|
} |
|
to { |
|
transform: scale(0); |
|
} |
|
} |
|
@-webkit-keyframes mblScaleOutIn { |
|
from { |
|
-webkit-transform: scale(1); |
|
} |
|
to { |
|
-webkit-transform: scale(1); |
|
} |
|
} |
|
@keyframes mblScaleOutIn { |
|
from { |
|
transform: scale(1); |
|
} |
|
to { |
|
transform: scale(1); |
|
} |
|
}
|
|
|