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 / image-collage / block.json

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

193 lines 5.0 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/image-collage",
5 "version": "1.0.0",
6 "title": "Image Collage",
7 "category": "bkbg-media",
8 "icon": "format-gallery",
9 "description": "Creative overlapping image composition with up to 5 images, custom rotations, positions, frames and a floating overlay card. Perfect for hero and about sections.",
10 "keywords": [
11 "collage",
12 "images",
13 "overlap",
14 "composition",
15 "scattered",
16 "photo",
17 "gallery",
18 "creative",
19 "stack"
20 ],
21 "textdomain": "blockenberg",
22 "editorScript": "bkbg-image-collage-editor",
23 "editorStyle": "bkbg-image-collage-style",
24 "style": "bkbg-image-collage-style",
25 "viewScript": "bkbg-image-collage-frontend",
26 "supports": {
27 "html": false,
28 "anchor": true,
29 "className": true,
30 "align": [
31 "wide",
32 "full"
33 ]
34 },
35 "attributes": {
36 "images": {
37 "type": "array",
38 "default": [
39 {
40 "id": "img1",
41 "url": "",
42 "imageId": 0,
43 "alt": "",
44 "rotation": -4,
45 "offsetX": 0,
46 "offsetY": 0,
47 "scale": 1,
48 "zIndex": 1,
49 "frame": "shadow",
50 "w": 55,
51 "h": 65
52 },
53 {
54 "id": "img2",
55 "url": "",
56 "imageId": 0,
57 "alt": "",
58 "rotation": 3,
59 "offsetX": 40,
60 "offsetY": 15,
61 "scale": 0.85,
62 "zIndex": 2,
63 "frame": "polaroid",
64 "w": 45,
65 "h": 50
66 },
67 {
68 "id": "img3",
69 "url": "",
70 "imageId": 0,
71 "alt": "",
72 "rotation": -2,
73 "offsetX": -10,
74 "offsetY": 55,
75 "scale": 0.7,
76 "zIndex": 3,
77 "frame": "shadow",
78 "w": 40,
79 "h": 40
80 }
81 ]
82 },
83 "preset": {
84 "type": "string",
85 "default": "scattered"
86 },
87 "canvasHeight": {
88 "type": "number",
89 "default": 460
90 },
91 "canvasMaxWidth": {
92 "type": "number",
93 "default": 680
94 },
95 "hoverLift": {
96 "type": "boolean",
97 "default": true
98 },
99 "animateIn": {
100 "type": "boolean",
101 "default": true
102 },
103 "frameColor": {
104 "type": "string",
105 "default": "#ffffff"
106 },
107 "framePadding": {
108 "type": "number",
109 "default": 10
110 },
111 "shadowIntensity": {
112 "type": "number",
113 "default": 20
114 },
115 "showOverlayCard": {
116 "type": "boolean",
117 "default": false
118 },
119 "overlayCardText": {
120 "type": "string",
121 "default": "Our Story"
122 },
123 "overlayCardSubtext": {
124 "type": "string",
125 "default": "Since 2012"
126 },
127 "overlayCardBg": {
128 "type": "string",
129 "default": "#ffffff"
130 },
131 "overlayCardColor": {
132 "type": "string",
133 "default": "#1e293b"
134 },
135 "overlayCardAccent": {
136 "type": "string",
137 "default": "#6c3fb5"
138 },
139 "overlayCardPos": {
140 "type": "string",
141 "default": "bottom-right"
142 },
143 "overlayCardTextSize": {
144 "type": "number",
145 "default": 16
146 },
147 "overlayCardTextWeight": {
148 "type": "string",
149 "default": "700"
150 },
151 "overlayCardTextLineHeight": {
152 "type": "number",
153 "default": 1.3
154 },
155 "overlayCardSubtextSize": {
156 "type": "number",
157 "default": 13
158 },
159 "overlayCardSubtextWeight": {
160 "type": "string",
161 "default": "400"
162 },
163 "overlayCardSubtextLineHeight": {
164 "type": "number",
165 "default": 1.5
166 },
167 "headlineTypo": {
168 "type": "object",
169 "default": {}
170 },
171 "subtextTypo": {
172 "type": "object",
173 "default": {}
174 },
175 "bgColor": {
176 "type": "string",
177 "default": ""
178 },
179 "align": {
180 "type": "string",
181 "default": "center"
182 },
183 "paddingTop": {
184 "type": "number",
185 "default": 40
186 },
187 "paddingBottom": {
188 "type": "number",
189 "default": 40
190 }
191 }
192 }
193