Fix Webkit CSS3 animation flickers


/ Published in: CSS
Save to your folder(s)

Ever notice a weird CS3 animation flicker? Annoying right? Add these CSS3 classes to the objects being animated and it should go away (at least it has in my testing). More details at the link, questions can be postsed either here or there.


Copy this code and paste it in your HTML
  1. /* Tested and working */
  2. -webkit-transform: translate3d(0,0,0);
  3.  
  4. /* Tested and not working, but has been reported working for others */
  5. -webkit-perspective: 0;

URL: http://fatfolderdesign.com/478/css/mobile-safari-webkit-flicking-animation-fix

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.