css translate3d

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 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;
}

以上是关于css translate3d的主要内容,如果未能解决你的问题,请参考以下文章

css CSS3,动画:使用translate3d强制WebKit中的硬件加速

用 jQuery 动画 translate3d

translate3d 对 z-index 居然有影响

translate3d 对 z-index 居然有影响

Translate3d 不会在 Safari 中移动嵌入元素(仅限 Windows)

一个 图片 滚动 飞入的css特效