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.
 
 
 
 
 
 

21 lines
969 B

@import "../css3.less";
.mblZoomIn.mblOut {
z-index: -100;
.animation-duration(.5s);
.animation-name(mblZoomInOut);
.animation-timing-function(ease-out);
}
.mblZoomIn.mblIn {
.animation-duration(.5s);
.animation-name(mblZoomInIn);
.animation-timing-function(ease-out);
}
.dj_android .mblZoomIn.mblIn {
.animation-name(mblZoomInInAndroid);
}
@-webkit-keyframes mblZoomInOut { .keyframes-transform-from-to-webkit(scale(1.0), scale(1.0)); }
@keyframes mblZoomInOut { .keyframes-transform-from-to (scale(1.0), scale(1.0)); }
@-webkit-keyframes mblZoomInIn { .keyframes-transform-opacity-from-to-webkit(scale(0.0), 0, scale(1.0), 1); }
@keyframes mblZoomInIn { .keyframes-transform-opacity-from-to (scale(0.0), 0, scale(1.0), 1); }
@-webkit-keyframes mblZoomInInAndroid { .keyframes-transform-from-to-webkit(scale(0.0), scale(1.0)); }
@keyframes mblZoomInInAndroid { .keyframes-transform-from-to (scale(0.0), scale(1.0)); }