div-action-animator-start

Starts specified animator

Parameters

Parameters Description
animator_id

string

Required parameter.

The identifier of the animator being started.

Functionality is under development.

type

string

Required parameter.

The value must always be animator_start.

Functionality is under development.

direction

string

Animation direction. This property sets whether an animation should play forward, backward, or alternate back and forth between playing the sequence forward and backward.

Possible values: normal, reverse, alternate, alternate_reverse.

Functionality is under development.

duration

int

Animation duration in milliseconds.

Restriction for the value x: x >= 0.

Functionality is under development.

end_value

object

Overrides value that will be set at the end of animation.

The value has the type div-typed-value.

Functionality is under development.

List of possible values:

  • string_value
  • integer_value
  • number_value
  • color_value
  • boolean_value
  • url_value
  • dict_value
  • array_value
  • interpolator

    string

    Interpolation function.

    Possible values: linear, ease, ease_in, ease_out, ease_in_out, spring.

    Functionality is under development.

    repeat_count

    int

    The number of times the animation will repeat before it finishes. 0 enables infinite repeats.

    Restriction for the value x: x >= 0.

    Functionality is under development.

    start_delay

    int

    Animation start delay in milliseconds.

    Restriction for the value x: x >= 0.

    Functionality is under development.

    start_value

    object

    Overrides value that will be set at the start of animation.

    The value has the type div-typed-value.

    Functionality is under development.

    List of possible values:

  • string_value
  • integer_value
  • number_value
  • color_value
  • boolean_value
  • url_value
  • dict_value
  • array_value
  • JSON
    {
      type*: "animator_start",
      animator_id*: "string",
      direction: "string",
      duration: "int",
      end_value: div-typed-value,
      interpolator: "string",
      repeat_count: "int",
      start_delay: "int",
      start_value: div-typed-value
    }