Text word by word style

Demo:

003 style schema

This is a simplified schema of a 003 style element:

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

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

Settings property for 003

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

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

Usage examples

Check the following examples of 003:

Example 1

{
    "width": 640,
    "height": 360,
    "quality": "high",
    "draft": false,
    "scenes": [
        {
            "background-color": "#89608E",
            "elements": [
                {
                    "type": "text",
                    "style": "003",
                    "text": "Show text word by word",
                    "settings": {
                        "font-size": "5.5vw"
                    },
                    "duration": 5
                }
            ]
        }
    ]
}