Domino falling style

Demo:

007 style schema

This is a simplified schema of a 007 style element:

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

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

Settings property for 007

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 007:

Example 1

{
    "width": 640,
    "height": 360,
    "quality": "high",
    "draft": false,
    "scenes": [
        {
            "background-color": "#C5D86D",
            "elements": [
                {
                    "type": "text",
                    "style": "007",
                    "text": "Domino falling",
                    "settings": {
                        "color": "black",
                        "font-size": "7vw",
                        "font-family": "Source Serif Pro",
                        "font-weight": "700"
                    },
                    "duration": 5,
                    "cache": false
                }
            ]
        }
    ]
}