---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.3
alternate:
  - https://divkit.tech/docs/en/concepts/divs/2/div-action-animator-start.md
  - https://divkit.tech/docs/ru/concepts/divs/2/div-action-animator-start.md
---
> **Documentation Index:** Fetch the complete configuration index at https://divkit.tech/docs/en/llms.txt

# div-action-animator-start
Launches the specified animator.

## Parameters
| Parameters | Description |
| --- | --- |
| `animator_id` | <p>**string**</p><p>Required parameter.</p><p>ID of the animator launched.</p><p>Available platforms: iOS, Android, web.</p> |
| `type` | <p>**string**</p><p>Required parameter.</p><p>The value must always be `animator_start`.</p><p>Available platforms: iOS, Android, web.</p> |
| `direction` | <p>**string**</p><p>Animation direction. Determines whether the animation should be played forward, backward, or alternate between forward and backward.</p><p>Possible values: `normal`, `reverse`, `alternate`, `alternate_reverse`.</p><p>Available platforms: iOS, Android, web.</p> |
| `duration` | <p>**int**</p><p>Animation duration in milliseconds.</p><p>Restriction for the value `x`: `x >= 0`.</p><p>Available platforms: iOS, Android, web.</p> |
| `end_value` | <p>**object**</p><p>Overrides the value that will be set after the animation finishes.</p><p>The value has the type `div-typed-value`.</p><p>Available platforms: iOS, Android, web.</p><p>List of possible values:<li>[string_value](string_value.md#string_value)</li><li>[integer_value](integer_value.md#integer_value)</li><li>[number_value](number_value.md#number_value)</li><li>[color_value](color_value.md#color_value)</li><li>[boolean_value](boolean_value.md#boolean_value)</li><li>[url_value](url_value.md#url_value)</li><li>[dict_value](dict_value.md#dict_value)</li><li>[array_value](array_value.md#array_value)</li></p> |
| `interpolator` | <p>**string**</p><p>Animated value interpolation function.</p><p>Possible values: `linear`, `ease`, `ease_in`, `ease_out`, `ease_in_out`, `spring`.</p><p>Available platforms: iOS, Android, web.</p> |
| `repeat_count` | <p>**object**</p><p>Number of times the animation will repeat before stopping. A value of `0` enables infinite looping.</p><p>The value has the type `div-count`.</p><p>Available platforms: iOS, Android, web.</p><p>List of possible values:<li>[div-infinity-count](div-infinity-count.md#div-infinity-count)</li><li>[div-fixed-count](div-fixed-count.md#div-fixed-count)</li></p> |
| `start_delay` | <p>**int**</p><p>Delay before the animation is launched in milliseconds.</p><p>Restriction for the value `x`: `x >= 0`.</p><p>Available platforms: iOS, Android, web.</p> |
| `start_value` | <p>**object**</p><p>Overrides the value that will be set before the animation begins.</p><p>The value has the type `div-typed-value`.</p><p>Available platforms: iOS, Android, web.</p><p>List of possible values:<li>[string_value](string_value.md#string_value)</li><li>[integer_value](integer_value.md#integer_value)</li><li>[number_value](number_value.md#number_value)</li><li>[color_value](color_value.md#color_value)</li><li>[boolean_value](boolean_value.md#boolean_value)</li><li>[url_value](url_value.md#url_value)</li><li>[dict_value](dict_value.md#dict_value)</li><li>[array_value](array_value.md#array_value)</li></p> |

<details>
<summary>JSON</summary>

```json
{
  type*: "animator_start",
  animator_id*: "string",
  direction: "string",
  duration: "int",
  end_value: div-typed-value,
  interpolator: "string",
  repeat_count: div-count,
  start_delay: "int",
  start_value: div-typed-value
}
```
</details>
