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 / word-flip / block.json

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

144 lines 3.4 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/word-flip",
5 "version": "1.0.0",
6 "title": "Word Flip",
7 "category": "bkbg-effects",
8 "icon": "sort",
9 "description": "Headline with a vertically flipping word that cycles through alternatives — like a slot machine or departure board embedded in text.",
10 "keywords": [
11 "flip",
12 "word",
13 "text",
14 "animation",
15 "headline",
16 "rotating",
17 "slot"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-word-flip-editor",
21 "style": "bkbg-word-flip-style",
22 "viewScript": "bkbg-word-flip-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "staticBefore": {
34 "type": "string",
35 "default": "We are"
36 },
37 "staticAfter": {
38 "type": "string",
39 "default": ""
40 },
41 "words": {
42 "type": "array",
43 "default": [
44 "designers",
45 "developers",
46 "creators",
47 "innovators"
48 ]
49 },
50 "flipMode": {
51 "type": "string",
52 "default": "roll"
53 },
54 "interval": {
55 "type": "number",
56 "default": 2200
57 },
58 "flipSpeed": {
59 "type": "number",
60 "default": 420
61 },
62 "tag": {
63 "type": "string",
64 "default": "h2"
65 },
66 "fontSize": {
67 "type": "integer",
68 "default": 56
69 },
70 "fontWeight": {
71 "type": "string",
72 "default": "800"
73 },
74 "letterSpacing": {
75 "type": "number",
76 "default": -1
77 },
78 "lineHeight": {
79 "type": "number",
80 "default": 1.1
81 },
82 "textAlign": {
83 "type": "string",
84 "default": "center"
85 },
86 "fontFamily": {
87 "type": "string",
88 "default": "inherit"
89 },
90 "staticColor": {
91 "type": "string",
92 "default": "#0f172a"
93 },
94 "flipColor": {
95 "type": "string",
96 "default": "#7c3aed"
97 },
98 "flipBg": {
99 "type": "string",
100 "default": ""
101 },
102 "flipBorderRadius": {
103 "type": "integer",
104 "default": 4
105 },
106 "flipPaddingH": {
107 "type": "integer",
108 "default": 8
109 },
110 "underlineStyle": {
111 "type": "string",
112 "default": "none"
113 },
114 "underlineColor": {
115 "type": "string",
116 "default": "#7c3aed"
117 },
118 "showBg": {
119 "type": "boolean",
120 "default": false
121 },
122 "bgColor": {
123 "type": "string",
124 "default": "#ffffff"
125 },
126 "paddingV": {
127 "type": "integer",
128 "default": 32
129 },
130 "paddingH": {
131 "type": "integer",
132 "default": 24
133 },
134 "borderRadius": {
135 "type": "integer",
136 "default": 0
137 },
138 "headingTypo": {
139 "type": "object",
140 "default": {}
141 }
142 }
143 }
144