PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / split-flap-display / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/split-flap-display/block.json

155 lines 3.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "blockenberg/split-flap-display",
5 "title": "Split-Flap Display",
6 "category": "bkbg-effects",
7 "icon": "editor-table",
8 "description": "Recreate the iconic airport departure-board split-flap animation. Characters roll through the alphabet and settle on the target text. Supports multiple messages, ticker mode, custom colours, and scroll-triggered animation.",
9 "keywords": [
10 "split flap",
11 "solari",
12 "airport",
13 "departure",
14 "board",
15 "flipboard",
16 "animation",
17 "text"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-split-flap-display-editor",
21 "style": "bkbg-split-flap-display-style",
22 "viewScript": "bkbg-split-flap-display-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "messages": {
34 "type": "array",
35 "default": [
36 "DEPARTURES",
37 "GATE A7",
38 "ON TIME "
39 ]
40 },
41 "charSet": {
42 "type": "string",
43 "default": "alpha"
44 },
45 "tickerMode": {
46 "type": "boolean",
47 "default": true
48 },
49 "tickerDelay": {
50 "type": "number",
51 "default": 3000
52 },
53 "flipOnScroll": {
54 "type": "boolean",
55 "default": true
56 },
57 "autoPlay": {
58 "type": "boolean",
59 "default": false
60 },
61 "charWidth": {
62 "type": "number",
63 "default": 48
64 },
65 "charHeight": {
66 "type": "number",
67 "default": 64
68 },
69 "charGap": {
70 "type": "number",
71 "default": 4
72 },
73 "rowGap": {
74 "type": "number",
75 "default": 8
76 },
77 "fontSize": {
78 "type": "number",
79 "default": 28
80 },
81 "fontWeight": {
82 "type": "number",
83 "default": 700
84 },
85 "flipSpeed": {
86 "type": "number",
87 "default": 60
88 },
89 "flipStagger": {
90 "type": "number",
91 "default": 30
92 },
93 "borderRadius": {
94 "type": "number",
95 "default": 6
96 },
97 "boardRadius": {
98 "type": "number",
99 "default": 12
100 },
101 "boardPadding": {
102 "type": "number",
103 "default": 24
104 },
105 "boardBg": {
106 "type": "string",
107 "default": "#1a1a1a"
108 },
109 "charBg": {
110 "type": "string",
111 "default": "#2a2a2a"
112 },
113 "charColor": {
114 "type": "string",
115 "default": "#f5f5dc"
116 },
117 "flapHalfBg": {
118 "type": "string",
119 "default": "#222222"
120 },
121 "dividerColor": {
122 "type": "string",
123 "default": "#111111"
124 },
125 "glowColor": {
126 "type": "string",
127 "default": ""
128 },
129 "label": {
130 "type": "string",
131 "default": "FLIGHT INFORMATION"
132 },
133 "labelColor": {
134 "type": "string",
135 "default": "#888888"
136 },
137 "showLabel": {
138 "type": "boolean",
139 "default": true
140 },
141 "fontFamily": {
142 "type": "string",
143 "default": "mono"
144 },
145 "labelTypo": {
146 "type": "object",
147 "default": {}
148 },
149 "charTypo": {
150 "type": "object",
151 "default": {}
152 }
153 }
154 }
155