Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is the iphone site: http://www.thevisionairegroup.com/projects/accessorizer/site/

After you click "play now" you'll get to a game. The guns will scroll in. You can scroll the purse and accessories up and down. You can see that when you let go they snap into place. Just as that snap happens, there's a flicker that occurs. The only webkit animations I'm using are:

'-webkit-transition': 'none'

'-webkit-transition': 'all 0.2s ease-out'

'-webkit-transform': 'translate(XXpx, XXpx)'

I choose either the first or second transition based on whether or not I want it to animate, and the transform is the only way I move things around.

The biggest issue though is when you click "Match items", then click "Play again". You'll see as the guns animate in, the entire background of the accessories/purses goes white. Can someone please radiate me with some insight asto why this is happening??

share|improve this question

7 Answers

I added -webkit-backface-visiblity and that mostly helped, but I still had an initial flicker after reloading the page. When I added -webkit-perspective: 1000, there was no flicker whatsoever.

-webkit-perspective: 1000;
-webkit-backface-visibility: hidden;
share|improve this answer
you just made my day! – Luke Oct 12 '11 at 16:15
7  
What's the magic behind 1000? Do any other value (>0) may work? – cYrus Dec 23 '11 at 20:08
NOTE: this makes the animation unresponsive to mouse events on windows chrome v19: in practice adding this, there is no flicker, but the animation not always starts (on mouse hover or whatever) – skyline26 Jun 26 '12 at 20:52
This is the solution we wanted... Thanks a bunch! – Sreenath Nannat Aug 1 '12 at 12:36
Fixed my problem: simple animating div was popping 1px to the left on animation start in Chrome 25 but was fine in Safari 6.0.2 and Canary 27. Glad it works, wish I understood why. – joemaller Mar 5 at 5:06
show 1 more comment

Try this, and hopefully it will help:

#game {
  -webkit-backface-visibility: hidden;
}
share|improve this answer
This works great in Safari default but fails in standalone mode. Do you have any ideas? – cYrus Dec 23 '11 at 21:54
body {-webkit-transform:translate3d(0,0,0);}
share|improve this answer
This did it for me.. however I had to apply it on a #wrapper element since applying on the body would screw up the layout. – adamJLev Aug 19 '11 at 14:31
If anyone want to see the backface "-webkit-backface-visibility: hidden;" didn't works, but this one is perfect. Thanks! – Nachtgold Apr 22 at 17:06

The actual answer for my case is here. Someone was close with: -webkit-backface-visibility: hidden; But the real answer is -webkit-backface-visibility: hidden; needs to be added to the parent div.

share|improve this answer
I actually needed to add -webkit-backface-visibility: hidden; to the parent div, the animated div, AND the children of the animated div. Once I did that, it worked flawlessly. – mattstuehler Mar 12 at 13:36
Great, this finally worked! Thanks! – joern Mar 13 at 14:29

Michael's answer -webkit-backface-visibility: hidden; worked when we hit this problem. We had translateZ(0px) on our <body> tag to prevent an iOS 3.1.3 and earlier IFRAME boundary bug and it caused anims to flicker. Adding -webkit-backface-visibility: hidden; to each element we animated fixed the flicker! Life saver.

share|improve this answer
div { -webkit-tap-highlight-color: rgba(255, 255, 255, 0); }

i noticed when i had a hover state on a div the page would flicker, even if i did not have any css or js attached to it. maybe this helps someone else.

share|improve this answer

I had a problem with a "flickering" CSS transition as well. The animation in question was a menu sliding in from off screen, and just when the animation finished, the entire menu flashed/flickered.

As it turned out, this was caused by an actual iOS feature, the "tap highlight", which for some reason kicked in after the CSS animation finished (i.e. way after the actual tap), and highlighted the entire menu instead of only the element that was tapped. I "fixed" the issue by entirely disabling tap-highlight, as described here:

-webkit-tap-highlight-color: rgba(0,0,0,0);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.