mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-15 20:01:03 +00:00
13 lines
No EOL
408 B
CSS
13 lines
No EOL
408 B
CSS
/* Transitions originally inspired by those from jQtouch, nice work, folks */
|
|
.in {
|
|
-webkit-animation-timing-function: ease-out;
|
|
-webkit-animation-duration: 325ms;
|
|
-moz-animation-timing-function: ease-out;
|
|
-moz-animation-duration: 325ms;
|
|
}
|
|
.out {
|
|
-webkit-animation-timing-function: ease-in;
|
|
-webkit-animation-duration: 250ms;
|
|
-moz-animation-timing-function: ease-in;
|
|
-moz-animation-duration: 250ms;
|
|
} |