Falling text animation component

Use this text animation component to show text that is revealed word by word.

Demo:

advanced/001 component schema

This is a simplified schema of a advanced/001 component element:

{
    "type": "component",
    "component": "advanced/001",
    "settings": {
        "animation": {}
    }
}

Check the full specification of the Component schema in the API documentation.

Settings property for advanced/001

This component accepts the following object items in the settings property:

animation object

Defines the animation properties

Check all available object properties here.
Object property
Default value
text
"Falling text"
vertical-align
"center"
text-align
"center"
color
"white"
font-family
"Roboto"
speed
3
Defines the falling speed, an integer from 1 to 6

Usage examples

Check the following examples of advanced/001:

Example 1

{
    "width": 1920,
    "height": 1080,
    "quality": "high",
    "draft": false,
    "scenes": [
        {
            "background-color": "#4392F1",
            "elements": [
                {
                    "type": "component",
                    "component": "advanced/001",
                    "settings": {
                        "animation": {
                            "text": "DON'T STOP BELIEVING",
                            "font-family": "Anton",
                            "font-size": "9vw"
                        }
                    },
                    "duration": 7
                }
            ]
        }
    ]
}

Example 2

{
    "width": 1920,
    "height": 1080,
    "quality": "high",
    "draft": false,
    "scenes": [
        {
            "elements": [
                {
                    "type": "image",
                    "src": "https://assets.json2video.com/assets/images/jurassic-park-01.jpg",
                    "scale": {
                        "width": 1920
                    }
                },
                {
                    "type": "component",
                    "component": "advanced/001",
                    "settings": {
                        "animation": {
                            "text": "Life finds a way",
                            "font-face": "Inter",
                            "font-weight": "700",
                            "font-size": "8vw",
                            "text-stroke": "5px rgba(50,50,50,0.5)"
                        }
                    }
                }
            ]
        }
    ]
}