summaryrefslogtreecommitdiff
path: root/js/dojo-1.7.2/dojox/mobile/themes/common/transitions/zoomOut.css
diff options
context:
space:
mode:
Diffstat (limited to 'js/dojo-1.7.2/dojox/mobile/themes/common/transitions/zoomOut.css')
-rw-r--r--js/dojo-1.7.2/dojox/mobile/themes/common/transitions/zoomOut.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/js/dojo-1.7.2/dojox/mobile/themes/common/transitions/zoomOut.css b/js/dojo-1.7.2/dojox/mobile/themes/common/transitions/zoomOut.css
new file mode 100644
index 0000000..8a292d4
--- /dev/null
+++ b/js/dojo-1.7.2/dojox/mobile/themes/common/transitions/zoomOut.css
@@ -0,0 +1,33 @@
+.mblZoomOut.mblOut {
+ z-index: 0;
+ -webkit-animation-duration: .5s;
+ -webkit-animation-name: mblZoomOutOut;
+ -webkit-animation-timing-function: ease-in;
+}
+.dj_android .mblZoomOut.mblOut {
+ -webkit-animation-name: mblZoomOutOutAndroid;
+}
+.mblZoomOut.mblIn {
+ z-index: -100;
+ -webkit-animation-duration: .5s;
+ -webkit-animation-name: mblZoomOutIn;
+ -webkit-animation-timing-function: ease-in;
+}
+@-webkit-keyframes mblZoomOutOut {
+ from {
+ -webkit-transform: scale(1.0);
+ opacity: 1;
+ }
+ to {
+ -webkit-transform: scale(0.0);
+ opacity: 0;
+ }
+}
+@-webkit-keyframes mblZoomOutOutAndroid {
+ from { -webkit-transform: scale(1.0); }
+ to { -webkit-transform: scale(0.0); }
+}
+@-webkit-keyframes mblZoomOutIn {
+ from { -webkit-transform: scale(1.0); }
+ to { -webkit-transform: scale(1.0); }
+}