Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
Transitions: Removed animation-fill-mode properties to improve animat…
Browse files Browse the repository at this point in the history
…ions in Android 4.x. Fixes #5679
  • Loading branch information
toddparker committed Feb 25, 2013
1 parent 0f55dd6 commit 43fd915
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions css/structure/jquery.mobile.transition.css
Expand Up @@ -13,24 +13,18 @@
opacity: 0;
}
.in {
-webkit-animation-fill-mode: both;
-webkit-animation-timing-function: ease-out;
-webkit-animation-duration: 350ms;
-moz-animation-fill-mode: both;
-moz-animation-timing-function: ease-out;
-moz-animation-duration: 350ms;
animation-fill-mode: both;
animation-timing-function: ease-out;
animation-duration: 350ms;
}
.out {
-webkit-animation-fill-mode: both;
-webkit-animation-timing-function: ease-in;
-webkit-animation-duration: 225ms;
-moz-animation-fill-mode: both;
-moz-animation-timing-function: ease-in;
-moz-animation-duration: 225ms;
animation-fill-mode: both;
animation-timing-function: ease-in;
animation-duration: 225ms;
}

0 comments on commit 43fd915

Please sign in to comment.