mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
Shorter fade out (150ms) and fade in (300ms) for speedier transitions.
This commit is contained in:
parent
4bc2bb8616
commit
df64a22e3e
1 changed files with 3 additions and 1 deletions
|
|
@ -2,7 +2,7 @@
|
|||
-webkit-transform: rotate(360deg);
|
||||
-webkit-animation-name: spin;
|
||||
-webkit-animation-duration: 1s;
|
||||
-webkit-animation-iteration-count: infinite;
|
||||
-webkit-animation-iteration-count: infinite;
|
||||
-webkit-animation-timing-function: linear;
|
||||
}
|
||||
@-webkit-keyframes spin {
|
||||
|
|
@ -135,12 +135,14 @@ Built by David Kaneda and maintained by Jonathan Stark.
|
|||
.fade.out {
|
||||
z-index: 0;
|
||||
opacity: 0;
|
||||
-webkit-animation-duration: 150ms;
|
||||
-webkit-animation-name: fadeout;
|
||||
}
|
||||
|
||||
.fade.in {
|
||||
opacity: 1;
|
||||
z-index: 10;
|
||||
-webkit-animation-duration: 300ms;
|
||||
-webkit-animation-name: fadein;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue