mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-26 06:53:44 +00:00
Faster fade in (225ms vs 300) and out (100ms vs 150) to see if this feels snappier.
This commit is contained in:
parent
1f5fcda09d
commit
956075cbff
1 changed files with 4 additions and 4 deletions
|
|
@ -21,17 +21,17 @@
|
|||
.fade.out {
|
||||
z-index: 0;
|
||||
opacity: 0;
|
||||
-webkit-animation-duration: 150ms;
|
||||
-webkit-animation-duration: 100ms;
|
||||
-webkit-animation-name: fadeout;
|
||||
-moz-animation-duration: 150ms;
|
||||
-moz-animation-duration: 100ms;
|
||||
-moz-animation-name: fadeout;
|
||||
}
|
||||
|
||||
.fade.in {
|
||||
opacity: 1;
|
||||
z-index: 10;
|
||||
-webkit-animation-duration: 300ms;
|
||||
-webkit-animation-duration: 225ms;
|
||||
-webkit-animation-name: fadein;
|
||||
-moz-animation-duration: 300ms;
|
||||
-moz-animation-duration: 225ms;
|
||||
-moz-animation-name: fadein;
|
||||
}
|
||||
Loading…
Reference in a new issue