Options
All
  • Public
  • Public/Protected
  • All
Menu

Module "geocortex/framework-ui/animation/Animation"

Index

Variables

MAX_OPS_PER_FRAME

MAX_OPS_PER_FRAME: number

The maximum number of delegated animation operations that the system will attempt to perform in a single animation frame.

Functions

create

getDefault

play

scheduleForAnimationFrame

  • scheduleForAnimationFrame(delegate: function): void
  • Schedules an action to be done on an animation frame. As a general rule, any work that touches the DOM (write or read) should be deferred using this mechanism (if possible).

    Parameters

    • delegate: function

      The delegated action.

        • (): void
        • Returns void

    Returns void