Back to Content

KeyframeEffect: iterationComposite property

files/en-us/web/api/keyframeeffect/iterationcomposite/index.md

latest691 B
Original Source

{{ APIRef("Web Animations") }}

The iterationComposite property of a {{domxref("KeyframeEffect")}} resolves how the animation's property value changes accumulate or override each other upon each of the animation's iterations.

Value

One of the following:

  • replace
    • : The keyframeEffect value produced is independent of the current iteration.
  • accumulate
    • : Subsequent iterations of the keyframeEffect build on the final value of the previous iteration.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also