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 / marquee-cards / block.json

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

205 lines 5.3 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/marquee-cards",
5 "title": "Marquee Cards",
6 "category": "bkbg-effects",
7 "icon": "slides",
8 "description": "Infinitely scrolling row of rich cards — images, headings, tags, and links. Ideal for features, use-cases, portfolio pieces, or team showcases.",
9 "keywords": [
10 "marquee",
11 "cards",
12 "scroll",
13 "infinite",
14 "loop",
15 "features",
16 "showcase",
17 "carousel"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-marquee-cards-editor",
21 "editorStyle": "bkbg-marquee-cards-style",
22 "style": "bkbg-marquee-cards-style",
23 "viewScript": "bkbg-marquee-cards-frontend",
24 "supports": {
25 "html": false,
26 "anchor": true,
27 "className": true,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "cards": {
35 "type": "array",
36 "default": [
37 {
38 "imageUrl": "",
39 "imageId": 0,
40 "tag": "Feature",
41 "heading": "Lightning Fast",
42 "text": "Built for modern web performance with zero bloat.",
43 "link": "",
44 "linkLabel": "Learn more →"
45 },
46 {
47 "imageUrl": "",
48 "imageId": 0,
49 "tag": "Design",
50 "heading": "Pixel Perfect",
51 "text": "Every detail crafted to delight your visitors.",
52 "link": "",
53 "linkLabel": "Learn more →"
54 },
55 {
56 "imageUrl": "",
57 "imageId": 0,
58 "tag": "Support",
59 "heading": "Always Reliable",
60 "text": "24/7 support and 99.9% uptime guaranteed.",
61 "link": "",
62 "linkLabel": "Learn more →"
63 },
64 {
65 "imageUrl": "",
66 "imageId": 0,
67 "tag": "Scale",
68 "heading": "Grows With You",
69 "text": "From startup to enterprise with the same platform.",
70 "link": "",
71 "linkLabel": "Learn more →"
72 }
73 ]
74 },
75 "speed": {
76 "type": "number",
77 "default": 40
78 },
79 "direction": {
80 "type": "string",
81 "default": "left"
82 },
83 "pauseOnHover": {
84 "type": "boolean",
85 "default": true
86 },
87 "twoRows": {
88 "type": "boolean",
89 "default": false
90 },
91 "cardWidth": {
92 "type": "number",
93 "default": 280
94 },
95 "cardGap": {
96 "type": "number",
97 "default": 20
98 },
99 "imageHeight": {
100 "type": "number",
101 "default": 160
102 },
103 "showImage": {
104 "type": "boolean",
105 "default": true
106 },
107 "showTag": {
108 "type": "boolean",
109 "default": true
110 },
111 "showText": {
112 "type": "boolean",
113 "default": true
114 },
115 "showLink": {
116 "type": "boolean",
117 "default": true
118 },
119 "cardBg": {
120 "type": "string",
121 "default": "#ffffff"
122 },
123 "cardBorder": {
124 "type": "string",
125 "default": "#e5e7eb"
126 },
127 "cardBorderWidth": {
128 "type": "number",
129 "default": 1
130 },
131 "cardRadius": {
132 "type": "number",
133 "default": 16
134 },
135 "cardPadding": {
136 "type": "number",
137 "default": 20
138 },
139 "cardShadow": {
140 "type": "boolean",
141 "default": true
142 },
143 "tagBg": {
144 "type": "string",
145 "default": "#ede9fe"
146 },
147 "tagColor": {
148 "type": "string",
149 "default": "#6c3fb5"
150 },
151 "headingColor": {
152 "type": "string",
153 "default": "#111827"
154 },
155 "textColor": {
156 "type": "string",
157 "default": "#6b7280"
158 },
159 "linkColor": {
160 "type": "string",
161 "default": "#6c3fb5"
162 },
163 "headingSize": {
164 "type": "number",
165 "default": 18
166 },
167 "textSize": {
168 "type": "number",
169 "default": 14
170 },
171 "tagSize": {
172 "type": "number",
173 "default": 11
174 },
175 "headingTypo": {
176 "type": "object",
177 "default": {}
178 },
179 "textTypo": {
180 "type": "object",
181 "default": {}
182 },
183 "tagTypo": {
184 "type": "object",
185 "default": {}
186 },
187 "wrapperBg": {
188 "type": "string",
189 "default": ""
190 },
191 "paddingY": {
192 "type": "number",
193 "default": 32
194 },
195 "fadeEdges": {
196 "type": "boolean",
197 "default": true
198 },
199 "hoverLift": {
200 "type": "boolean",
201 "default": true
202 }
203 }
204 }
205