carlos-sanchez
1/29/2015 - 3:42 PM

translate3d

translate3d

.animClass {
	-webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
	/* more specific animation properties here */
}

/*The use of translate3d pushes CSS animations into hardware acceleration. Even if you're looking to do a basic 2d translation, use translate3d for more power! If your animation is still flickering after switching to the transform above, you can use a few little-known CSS properties to try to fix the problem:*/

.animClass {
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
}