Liking cljdoc? Tell your friends :D

web.AnimationEffect

The AnimationEffect interface of the Web Animations API defines and future animation effects like web.KeyframeEffect, which be passed to web.Animation objects for playing, and web.KeyframeEffectReadOnly is used by CSS Animations and Transitions).

The AnimationEffect interface of the Web Animations API defines
and future animation effects like `web.KeyframeEffect`, which
be passed to `web.Animation` objects for playing, and `web.KeyframeEffectReadOnly`
is used by CSS Animations and Transitions).
raw docstring

get-computed-timingcljs

(get-computed-timing this)

Method.

The getComputedTiming() method of the web.AnimationEffect interface the calculated timing properties for this animation effect.

var currentTimeValues = animation.getComputedTiming();

See also: https://developer.mozilla.org/en-US/docs/Web/API/AnimationEffect/getComputedTiming

Method.

The getComputedTiming() method of the `web.AnimationEffect` interface
the calculated timing properties for this animation effect.

`var currentTimeValues = animation.getComputedTiming();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AnimationEffect/getComputedTiming`
sourceraw docstring

get-timingcljs

(get-timing this)

Method.

The AnimationEffect.getTiming() method of the web.AnimationEffect returns an web.EffectTiming object containing the timing properties the Animation Effect.

animationTiming = animation.getTiming();

See also: https://developer.mozilla.org/en-US/docs/Web/API/AnimationEffect/getTiming

Method.

The AnimationEffect.getTiming() method of the `web.AnimationEffect`
returns an `web.EffectTiming` object containing the timing properties
the Animation Effect.

`animationTiming = animation.getTiming();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AnimationEffect/getTiming`
sourceraw docstring

update-timingcljs

(update-timing this timing)

Method.

The updateTiming() method of the web.AnimationEffect interface the specified timing properties for an animation effect.

animation.updateTiming(timing);

See also: https://developer.mozilla.org/en-US/docs/Web/API/AnimationEffect/updateTiming

Method.

The updateTiming() method of the `web.AnimationEffect` interface
the specified timing properties for an animation effect.

`animation.updateTiming(timing);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AnimationEffect/updateTiming`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close