From 867c4b20bdd26b5dca701b2b43bdea4147068c83 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Thu, 23 Apr 2015 12:58:08 -0300 Subject: [PATCH] add 3d transform --- public/views/walletHome.html | 20 ++++++++++++++------ src/css/mobile.css | 19 +++++++++++++++++++ 2 files changed, 33 insertions(+), 6 deletions(-) diff --git a/public/views/walletHome.html b/public/views/walletHome.html index 572ff73a9..38502a396 100644 --- a/public/views/walletHome.html +++ b/public/views/walletHome.html @@ -1,7 +1,7 @@
-
+
@@ -114,8 +114,12 @@
- -
+ +
@@ -187,7 +191,7 @@ send --> -
+

@@ -328,8 +332,12 @@
- -
+ +
diff --git a/src/css/mobile.css b/src/css/mobile.css index 21404d8da..7ac7e3413 100644 --- a/src/css/mobile.css +++ b/src/css/mobile.css @@ -687,3 +687,22 @@ a.pin-button:active { opacity: 0; } +.tab-view { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + width:100%; + position: absolute; +} + +.tab-in { + -webkit-transform: translate3d(0, 0, 0) !important; + transform: translate3d(0, 0, 0) !important; +} + +.tab-out { + -webkit-transform: translate3d(-100%, 0, 0) !important; + transform: translate3d(-100%, 0, 0) !important; +} + + +