Class AnimationScheduler
- Direct Known Subclasses:
AnimationSchedulerImplStandard
,AnimationSchedulerImplTimer
,StubAnimationScheduler
GWT.UncaughtExceptionHandler
if one is
installed.-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
The callback used when an animation frame becomes available.static class
A handle to the requested animation frame created byrequestAnimationFrame(AnimationCallback, Element)
.static class
Helper to detect native support for animations. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic AnimationScheduler
get()
Returns the default implementation of the AnimationScheduler API.Schedule an animation, letting the browser decide when to trigger the next step in the animation.abstract AnimationScheduler.AnimationHandle
requestAnimationFrame
(AnimationScheduler.AnimationCallback callback, Element element) Schedule an animation, letting the browser decide when to trigger the next step in the animation.
-
Constructor Details
-
AnimationScheduler
public AnimationScheduler()
-
-
Method Details
-
get
Returns the default implementation of the AnimationScheduler API. -
requestAnimationFrame
public AnimationScheduler.AnimationHandle requestAnimationFrame(AnimationScheduler.AnimationCallback callback) Schedule an animation, letting the browser decide when to trigger the next step in the animation.NOTE: If you are animating an element, use
requestAnimationFrame(AnimationCallback, Element)
instead so the browser can optimize for the specified element.Using this method instead of a timeout is preferred because the browser is in the best position to decide how frequently to trigger the callback for an animation of the specified element. The browser can balance multiple animations and trigger callbacks at the optimal rate for smooth performance.
- Parameters:
callback
- the callback to fire- Returns:
- a handle to the requested animation frame
- See Also:
-
requestAnimationFrame
public abstract AnimationScheduler.AnimationHandle requestAnimationFrame(AnimationScheduler.AnimationCallback callback, Element element) Schedule an animation, letting the browser decide when to trigger the next step in the animation.Using this method instead of a timeout is preferred because the browser is in the best position to decide how frequently to trigger the callback for an animation of the specified element. The browser can balance multiple animations and trigger callbacks at the optimal rate for smooth performance.
- Parameters:
callback
- the callback to fireelement
- the element being animated- Returns:
- a handle to the requested animation frame
-