Ceil and floor style

Demo:

008 style schema

This is a simplified schema of a 008 style element:

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

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

Settings property for 008

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

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

Usage examples

Check the following examples of 008:

Example 1

{
    "width": 640,
    "height": 360,
    "quality": "high",
    "draft": false,
    "scenes": [
        {
            "background-color": "#42CAFD",
            "elements": [
                {
                    "type": "text",
                    "style": "008",
                    "text": "Ceil and floor",
                    "settings": {
                        "color": "white",
                        "font-size": "10vw",
                        "font-family": "Bebas Neue"
                    },
                    "duration": 5,
                    "cache": false
                }
            ]
        }
    ]
}