summaryrefslogtreecommitdiff
path: root/js/dojo/dojox/mobile/themes/common/transitions/reveal.css
diff options
context:
space:
mode:
Diffstat (limited to 'js/dojo/dojox/mobile/themes/common/transitions/reveal.css')
-rw-r--r--js/dojo/dojox/mobile/themes/common/transitions/reveal.css35
1 files changed, 35 insertions, 0 deletions
diff --git a/js/dojo/dojox/mobile/themes/common/transitions/reveal.css b/js/dojo/dojox/mobile/themes/common/transitions/reveal.css
new file mode 100644
index 0000000..b711984
--- /dev/null
+++ b/js/dojo/dojox/mobile/themes/common/transitions/reveal.css
@@ -0,0 +1,35 @@
+.mblReveal.mblOut {
+ z-index: 0;
+ -webkit-transition-property: none;
+ -webkit-transition-duration: 0s;
+ -webkit-transform: translate3d(0%,0px,0px) !important;
+}
+.mblReveal.mblOut.mblTransition {
+ -webkit-transition-property: -webkit-transform;
+ -webkit-transition-duration: .4s;
+ -webkit-transform: translate3d(-100%,0px,0px) !important;
+}
+.mblReveal.mblIn {
+ z-index: -100;
+ -webkit-transition-property: none;
+ -webkit-transition-duration: 0s;
+ -webkit-transform: translate3d(0%,0px,-1px) !important;
+}
+.mblReveal.mblIn.mblTransition {
+ -webkit-transition-property: -webkit-transform;
+ -webkit-transition-duration: .4s;
+ -webkit-transform: translate3d(0%,0px,0px) !important;
+}
+.mblReveal.mblOut.mblReverse {
+ -webkit-transition-property: none;
+ -webkit-transform: translate3d(0%,0px,0px) !important;
+}
+.mblReveal.mblOut.mblReverse.mblTransition {
+ -webkit-transition-property: -webkit-transform;
+ -webkit-transform: translate3d(100%,0px,0px) !important;
+}
+.dj_android.dj_tablet .mblReveal.mblOut.mblTransition,
+.dj_android.dj_tablet .mblReveal.mblIn.mblTransition {
+ -webkit-transition-duration: .6s;
+ -webkit-transition-timing-function: linear;
+}