Text letter by letter style

Demo:

004 style schema

This is a simplified schema of a 004 style element:

{
    "type": "text",
    "style": "004",
    "text": "",
    "settings": {}
}

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

Settings property for 004

This text style has the following default properties in the settings field:

Object property
Default value
vertical-align
"center"
font-size
"4vw"
font-family
"Roboto"
font-weight
"400"
text-align
"center"
text-shadow
"2px 2px rgba(33,33,33,0.5)"
color
"#FFFFFF"

Usage examples

Check the following examples of 004:

Example 1

{
    "width": 640,
    "height": 360,
    "quality": "high",
    "draft": false,
    "scenes": [
        {
            "background-color": "#FFC759",
            "elements": [
                {
                    "type": "text",
                    "style": "004",
                    "text": "Show text letter by letter",
                    "settings": {
                        "font-size": "40px",
                        "font-family": "Roboto Mono"
                    },
                    "duration": 5
                }
            ]
        }
    ]
}