# ghostkit/3.3.3/gutenberg/blocks/countdown/block.json

Block Animations, Motion &amp; Scroll Effects – Ghost Kit, version 3.3.3. 41 lines.

- Page: https://pluginprobe.com/plugins/ghostkit/3.3.3/code/gutenberg/blocks/countdown/block.json
- Raw: https://pluginprobe.com/plugins/ghostkit/3.3.3/raw/gutenberg/blocks/countdown/block.json
- Modified: 2023-09-26T09:21:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ghostkit/3.3.3/code/gutenberg/blocks/countdown/block.json#L10-L20`.

```json
{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "ghostkit/countdown",
  "category": "ghostkit",
  "title": "Countdown",
  "description": "Countdown timer for upcoming event.",
  "keywords": ["timer", "count", "number"],
  "supports": {
    "html": false,
    "className": false,
    "anchor": true,
    "align": ["wide", "full"]
  },
  "attributes": {
    "date": {
      "type": "string"
    },
    "units": {
      "type": "array",
      "default": ["days", "hours", "minutes", "seconds"]
    },
    "unitsAlign": {
      "type": "string"
    },

    "numberFontSize": {
      "type": "number"
    },
    "labelFontSize": {
      "type": "number"
    },
    "numberColor": {
      "type": "string"
    },
    "labelColor": {
      "type": "string"
    }
  }
}

```
