Files
divkit/schema/div-animation.json
man-y 7f00e3b5aa Mark supported features of Flutter
e5a6a0f23d3e399f39c492c585359ca1666ccddf
2024-05-14 11:19:28 +03:00

63 lines
1.5 KiB
JSON

{
"type": "object",
"$description": "translations.json#/div_animation",
"properties": {
"name": {
"type": "string",
"enum": [
"fade",
"translate",
"scale",
"native",
"set",
"no_animation"
],
"$description": "translations.json#/div_animation_name"
},
"duration": {
"$ref": "common.json#/non_negative_integer",
"default_value": "300",
"$description": "translations.json#/div_animation_duration"
},
"start_delay": {
"$ref": "common.json#/non_negative_integer",
"default_value": "0",
"$description": "translations.json#/div_animation_start_delay"
},
"start_value": {
"type": "number",
"$description": "translations.json#/div_animation_start_value"
},
"end_value": {
"type": "number",
"$description": "translations.json#/div_animation_end_value"
},
"repeat": {
"alias_swift": "repeat_count",
"$ref": "div-count.json",
"default_value": "{ \"type\": \"infinity\" }",
"$description": "translations.json#/div_animation_repeat"
},
"interpolator": {
"$ref": "div-animation-interpolator.json",
"default_value": "spring",
"$description": "translations.json#/div_animation_interpolator"
},
"items": {
"type": "array",
"items": {
"$ref": "div-animation.json"
},
"$description": "translations.json#/div_animation_items"
}
},
"platforms": [
"android",
"ios",
"web"
],
"required": [
"name"
]
}