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 / card-deck-slider / block.json

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

209 lines 5.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/card-deck-slider",
5 "title": "Card Deck Slider",
6 "category": "bkbg-effects",
7 "description": "A 3D card deck slider where cards arc/fan out behind the front card and animate through the sequence.",
8 "keywords": [
9 "cards",
10 "deck",
11 "slider",
12 "3d",
13 "fan",
14 "carousel"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-card-deck-slider-editor",
18 "style": "bkbg-card-deck-slider-style",
19 "viewScript": "bkbg-card-deck-slider-frontend",
20 "supports": {
21 "html": false,
22 "anchor": true,
23 "className": true,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "cards": {
31 "type": "array",
32 "default": [
33 {
34 "imageUrl": "",
35 "imageAlt": "",
36 "tag": "Design",
37 "title": "Creative Solutions",
38 "description": "We craft beautiful digital experiences that inspire and engage your audience.",
39 "linkUrl": "",
40 "linkLabel": "Learn More"
41 },
42 {
43 "imageUrl": "",
44 "imageAlt": "",
45 "tag": "Strategy",
46 "title": "Smart Thinking",
47 "description": "Data-driven strategies that translate complex challenges into clear opportunities.",
48 "linkUrl": "",
49 "linkLabel": "Learn More"
50 },
51 {
52 "imageUrl": "",
53 "imageAlt": "",
54 "tag": "Technology",
55 "title": "Modern Platforms",
56 "description": "Cutting-edge technology built for performance, scale and long-term success.",
57 "linkUrl": "",
58 "linkLabel": "Learn More"
59 },
60 {
61 "imageUrl": "",
62 "imageAlt": "",
63 "tag": "Growth",
64 "title": "Measurable Results",
65 "description": "Every project is measured against clear goals so you always know your ROI.",
66 "linkUrl": "",
67 "linkLabel": "Learn More"
68 }
69 ]
70 },
71 "deckStyle": {
72 "type": "string",
73 "default": "fan"
74 },
75 "cardWidth": {
76 "type": "number",
77 "default": 360
78 },
79 "cardHeight": {
80 "type": "number",
81 "default": 480
82 },
83 "cardRadius": {
84 "type": "number",
85 "default": 20
86 },
87 "stackCount": {
88 "type": "number",
89 "default": 3
90 },
91 "stackAngle": {
92 "type": "number",
93 "default": 8
94 },
95 "stackOffset": {
96 "type": "number",
97 "default": 18
98 },
99 "stackScale": {
100 "type": "number",
101 "default": 0.06
102 },
103 "transitionDuration": {
104 "type": "number",
105 "default": 500
106 },
107 "autoPlay": {
108 "type": "boolean",
109 "default": false
110 },
111 "autoInterval": {
112 "type": "number",
113 "default": 3500
114 },
115 "showDots": {
116 "type": "boolean",
117 "default": true
118 },
119 "showArrows": {
120 "type": "boolean",
121 "default": true
122 },
123 "showTag": {
124 "type": "boolean",
125 "default": true
126 },
127 "showTitle": {
128 "type": "boolean",
129 "default": true
130 },
131 "showDescription": {
132 "type": "boolean",
133 "default": true
134 },
135 "showLink": {
136 "type": "boolean",
137 "default": true
138 },
139 "titleSize": {
140 "type": "number",
141 "default": 24
142 },
143 "descSize": {
144 "type": "number",
145 "default": 15
146 },
147 "tagSize": {
148 "type": "number",
149 "default": 11
150 },
151 "imageFit": {
152 "type": "string",
153 "default": "cover"
154 },
155 "overlayStrength": {
156 "type": "number",
157 "default": 50
158 },
159 "cardBg": {
160 "type": "string",
161 "default": "#1e293b"
162 },
163 "titleColor": {
164 "type": "string",
165 "default": "#ffffff"
166 },
167 "descColor": {
168 "type": "string",
169 "default": "#94a3b8"
170 },
171 "tagBg": {
172 "type": "string",
173 "default": "#6366f1"
174 },
175 "tagColor": {
176 "type": "string",
177 "default": "#ffffff"
178 },
179 "linkColor": {
180 "type": "string",
181 "default": "#818cf8"
182 },
183 "dotColor": {
184 "type": "string",
185 "default": "#6366f1"
186 },
187 "arrowBg": {
188 "type": "string",
189 "default": "#ffffff"
190 },
191 "arrowColor": {
192 "type": "string",
193 "default": "#0f172a"
194 },
195 "sectionBg": {
196 "type": "string",
197 "default": ""
198 },
199 "typoTitle": {
200 "type": "object",
201 "default": {}
202 },
203 "typoDesc": {
204 "type": "object",
205 "default": {}
206 }
207 }
208 }
209