sample skeleton application with dojo toolkit & arcgis js api v 4.30
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

.mblZoomOut.mblOut {
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
-webkit-animation-name: mblZoomOutOut;
animation-name: mblZoomOutOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
.dj_android .mblZoomOut.mblOut {
-webkit-animation-name: mblZoomOutOutAndroid;
animation-name: mblZoomOutOutAndroid;
}
.mblZoomOut.mblIn {
z-index: -100;
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
-webkit-animation-name: mblZoomOutIn;
animation-name: mblZoomOutIn;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes mblZoomOutOut {
from {
-webkit-transform: scale(1);
opacity: 1;
}
to {
-webkit-transform: scale(0);
opacity: 0;
}
}
@keyframes mblZoomOutOut {
from {
transform: scale(1);
opacity: 1;
}
to {
transform: scale(0);
opacity: 0;
}
}
@-webkit-keyframes mblZoomOutOutAndroid {
from {
-webkit-transform: scale(1);
}
to {
-webkit-transform: scale(0);
}
}
@keyframes mblZoomOutOutAndroid {
from {
transform: scale(1);
}
to {
transform: scale(0);
}
}
@-webkit-keyframes mblZoomOutIn {
from {
-webkit-transform: scale(1);
}
to {
-webkit-transform: scale(1);
}
}
@keyframes mblZoomOutIn {
from {
transform: scale(1);
}
to {
transform: scale(1);
}
}