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

Commit

Permalink
Browse files Browse the repository at this point in the history
Issue #4559: Fixing the blink forward/back effect that sometimes happ…
…ens before and after transitions. This fix will only work in browsers that support animation-fill-mode
  • Loading branch information
dcarrith committed Jun 19, 2012
1 parent 2812dce commit fbbcf9e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion css/structure/jquery.mobile.transition.css
Expand Up @@ -10,15 +10,18 @@
}

.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;
}

.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;
}

1 comment on commit fbbcf9e

@toddparker
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Turns out this changes really slows down transitions on tablets like the Nexus 7. We're going to revert this change and look into other solutions.

Please sign in to comment.