mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
added the timing durations to the transitions themselves
This commit is contained in:
parent
c97d708bec
commit
d72397daa0
6 changed files with 25 additions and 0 deletions
|
|
@ -20,13 +20,17 @@
|
|||
.flip.out {
|
||||
-webkit-transform: rotateY(-90deg) scale(.9);
|
||||
-webkit-animation-name: flipouttoleft;
|
||||
-webkit-animation-duration: 225ms;
|
||||
-moz-transform: rotateY(-90deg) scale(.9);
|
||||
-moz-animation-name: flipouttoleft;
|
||||
-moz-animation-duration: 225ms;
|
||||
}
|
||||
|
||||
.flip.in {
|
||||
-webkit-animation-name: flipintoright;
|
||||
-webkit-animation-duration: 350ms;
|
||||
-moz-animation-name: flipintoright;
|
||||
-moz-animation-duration: 350ms;
|
||||
}
|
||||
|
||||
.flip.out.reverse {
|
||||
|
|
|
|||
|
|
@ -9,12 +9,16 @@
|
|||
opacity: 1;
|
||||
-webkit-animation-name: popin;
|
||||
-moz-animation-name: popin;
|
||||
-webkit-animation-duration: 350ms;
|
||||
-moz-animation-duration: 350ms;
|
||||
}
|
||||
|
||||
.pop.out {
|
||||
-webkit-animation-name: fadeout;
|
||||
-moz-animation-name: fadeout;
|
||||
opacity: 0;
|
||||
-webkit-animation-duration: 225ms;
|
||||
-moz-animation-duration: 225ms;
|
||||
}
|
||||
|
||||
.pop.in.reverse {
|
||||
|
|
|
|||
|
|
@ -4,6 +4,8 @@
|
|||
-webkit-animation-name: slideouttoleft;
|
||||
-moz-transform: translateX(-100%);
|
||||
-moz-animation-name: slideouttoleft;
|
||||
-webkit-animation-duration: 225ms;
|
||||
-moz-animation-duration: 225ms;
|
||||
}
|
||||
|
||||
.slide.in {
|
||||
|
|
@ -11,6 +13,8 @@
|
|||
-webkit-animation-name: fadein;
|
||||
-moz-transform: translateX(0);
|
||||
-moz-animation-name: fadein;
|
||||
-webkit-animation-duration: 350ms;
|
||||
-moz-animation-duration: 350ms;
|
||||
}
|
||||
|
||||
.slide.out.reverse {
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
.slidedown.out {
|
||||
-webkit-animation-name: fadeout;
|
||||
-moz-animation-name: fadeout;
|
||||
-webkit-animation-duration: 225ms;
|
||||
-moz-animation-duration: 225ms;
|
||||
}
|
||||
|
||||
.slidedown.in {
|
||||
|
|
@ -9,6 +11,8 @@
|
|||
-webkit-animation-name: slideinfromtop;
|
||||
-moz-transform: translateY(0);
|
||||
-moz-animation-name: slideinfromtop;
|
||||
-webkit-animation-duration: 350ms;
|
||||
-moz-animation-duration: 350ms;
|
||||
}
|
||||
|
||||
.slidedown.in.reverse {
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
.slideup.out {
|
||||
-webkit-animation-name: fadeout;
|
||||
-moz-animation-name: fadeout;
|
||||
-webkit-animation-duration: 225ms;
|
||||
-moz-animation-duration: 225ms;
|
||||
}
|
||||
|
||||
.slideup.in {
|
||||
|
|
@ -9,6 +11,8 @@
|
|||
-webkit-animation-name: slideinfrombottom;
|
||||
-moz-transform: translateY(0);
|
||||
-moz-animation-name: slideinfrombottom;
|
||||
-webkit-animation-duration: 350ms;
|
||||
-moz-animation-duration: 350ms;
|
||||
}
|
||||
|
||||
.slideup.in.reverse {
|
||||
|
|
|
|||
|
|
@ -25,11 +25,16 @@
|
|||
-webkit-animation-name: flipouttoleft;
|
||||
-moz-transform: rotateY(-90deg) scale(.9);
|
||||
-moz-animation-name: flipouttoleft;
|
||||
-webkit-animation-duration: 225ms;
|
||||
-moz-animation-duration: 225ms;
|
||||
}
|
||||
|
||||
.turn.in {
|
||||
-webkit-animation-name: flipintoright;
|
||||
-moz-animation-name: flipintoright;
|
||||
-webkit-animation-duration: 350ms;
|
||||
-moz-animation-duration: 350ms;
|
||||
|
||||
}
|
||||
|
||||
.turn.out.reverse {
|
||||
|
|
|
|||
Loading…
Reference in a new issue