mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
28 lines
660 B
CSS
28 lines
660 B
CSS
.pane {
|
|
position: fixed;
|
|
width: 100%;
|
|
}
|
|
.reveal-animation {
|
|
/*
|
|
-webkit-transform: translate3d(0%, 0, 0);
|
|
transform: translate3d(0%, 0, 0);
|
|
|
|
-webkit-transition: -webkit-transform 1s ease-in-out;
|
|
transition: transform 1s ease-in-out;
|
|
*/
|
|
}
|
|
.reveal-animation.ng-enter {
|
|
-webkit-transition: 0.2s linear all;
|
|
-webkit-transform:translate3d(100%,0,0) ;
|
|
}
|
|
.reveal-animation.ng-enter-active {
|
|
-webkit-transform:translate3d(0,0,0) ;
|
|
}
|
|
.reveal-animation.ng-leave {
|
|
-webkit-transition: 0.2s linear all;
|
|
-webkit-transform:translate3d(0,0,0);
|
|
}
|
|
.reveal-animation.ng-leave-active {
|
|
-webkit-transform:translate3d(-100%,0,0);
|
|
}
|