animation_preview
Generate animation sequence previews in GIF, MP4, or WebM formats for streamlined UI/UX development workflows. Simplify visual testing and design iterations.
Instructions
Generate preview of animation sequence
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | gif | |
timeline | Yes |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "gif",
"enum": [
"gif",
"mp4",
"webm"
],
"type": "string"
},
"timeline": {
"type": "object"
}
},
"required": [
"timeline"
],
"type": "object"
}