On this page

Interface AnimationEffect

The AnimationEffect interface of the Web Animations API is an interface representing animation effects.

MDN Reference

interface AnimationEffect {
    getComputedTiming(): ComputedEffectTiming;
    getTiming(): EffectTiming;
    updateTiming(timing?: OptionalEffectTiming): void;
}
Index

Methods

  • The AnimationEffect.getTiming() method of the AnimationEffect interface returns an object containing the timing properties for the Animation Effect.

    MDN Reference

    Returns EffectTiming

Was this helpful?
SDK JS
Reference
AnimationEffect