PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.13
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.13
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 / hovering-image-stack / block.json

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

117 lines 2.8 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/hovering-image-stack",
5 "title": "Hovering Image Stack",
6 "category": "bkbg-effects",
7 "description": "A stack of images arranged in a fan/cascade that spreads outward on hover revealing all images.",
8 "keywords": [
9 "images",
10 "stack",
11 "fan",
12 "hover",
13 "cascade",
14 "gallery"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-hovering-image-stack-editor",
18 "style": "bkbg-hovering-image-stack-style",
19 "viewScript": "bkbg-hovering-image-stack-frontend",
20 "supports": {
21 "html": false,
22 "anchor": true,
23 "className": true,
24 "align": [
25 "wide",
26 "full"
27 ]
28 },
29 "attributes": {
30 "images": {
31 "type": "array",
32 "default": [
33 {
34 "url": "",
35 "alt": "Image 1",
36 "caption": ""
37 },
38 {
39 "url": "",
40 "alt": "Image 2",
41 "caption": ""
42 },
43 {
44 "url": "",
45 "alt": "Image 3",
46 "caption": ""
47 },
48 {
49 "url": "",
50 "alt": "Image 4",
51 "caption": ""
52 }
53 ]
54 },
55 "spreadMode": {
56 "type": "string",
57 "default": "fan"
58 },
59 "spreadAngle": {
60 "type": "number",
61 "default": 15
62 },
63 "spreadDist": {
64 "type": "number",
65 "default": 60
66 },
67 "imageWidth": {
68 "type": "number",
69 "default": 200
70 },
71 "imageHeight": {
72 "type": "number",
73 "default": 280
74 },
75 "imageRadius": {
76 "type": "number",
77 "default": 16
78 },
79 "showCaption": {
80 "type": "boolean",
81 "default": false
82 },
83 "captionSize": {
84 "type": "number",
85 "default": 13
86 },
87 "shadowStrength": {
88 "type": "number",
89 "default": 30
90 },
91 "borderWidth": {
92 "type": "number",
93 "default": 3
94 },
95 "borderColor": {
96 "type": "string",
97 "default": "#ffffff"
98 },
99 "bgColor": {
100 "type": "string",
101 "default": "transparent"
102 },
103 "captionColor": {
104 "type": "string",
105 "default": "#0f172a"
106 },
107 "captionBg": {
108 "type": "string",
109 "default": "#ffffff"
110 },
111 "captionTypo": {
112 "type": "object",
113 "default": {}
114 }
115 }
116 }
117