Free letters out style

Demo:

010 style schema

This is a simplified schema of a 010 style element:


Warning: substr() expects parameter 1 to be string, array given in /var/www/json2video.com/html/tpl/common.php on line 1096
{
    "type": "text",
    "style": "010",
    "text": "",
    "settings": {}
}

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

Settings property for 010

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

Object property
Default value
vertical-align
"center"
font-size
"4vw"
font-family
"Inter"
font-weight
"400"
text-align
"center"
color
"#FFFFFF"

Usage examples

Check the following examples of 010:

Example 1


Warning: substr() expects parameter 1 to be string, array given in /var/www/json2video.com/html/tpl/common.php on line 1096
{
    "width": 640,
    "height": 360,
    "quality": "high",
    "draft": false,
    "scenes": [
        {
            "background-color": "#F5F5F5",
            "elements": [
                {
                    "type": "text",
                    "style": "010",
                    "text": "FREE LETTERS OUT",
                    "settings": {
                        "color": "red",
                        "font-size": "8vw",
                        "font-family": "Inter",
                        "font-weight": "700"
                    },
                    "duration": 5,
                    "cache": false
                }
            ]
        }
    ]
}