...

This page shows how animations are affected by this policy.

CSS keyframe animation on transform property

This first animation continues when the policy is active because it is GPU accelerated. It's animating one of the three properties (opacity, transform, filter) that can be reliably hardware accelerated.

CSS keyframe animation on left property

This second animation jumps when the policy is active because it's animating the left property. Don't do that.

CSS keyframe animation on left and transform properties

This one shows what happens if you animate more than one property and one of the properties is non accelerated. Some of the animation still continues.

requestionAnimationFrame-based animation on left property

JS-based animations using requestionAnimationFrame are not affected by the policy, even if they do terrible things like animate CSS left.

CSS Transition on height property

Hover over this box. The CSS transition on the height/width won't animate when the policy is active.

Hover on me.