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

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

173 lines 4.6 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/parallax-depth-cards",
5 "title": "Parallax Depth Cards",
6 "category": "bkbg-effects",
7 "description": "Cards with layered 3D depth parallax on mouse move \u2014 different elements float at different speeds.",
8 "keywords": [
9 "parallax",
10 "depth",
11 "3d",
12 "mouse",
13 "card",
14 "tilt",
15 "float"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-parallax-depth-cards-editor",
19 "style": "bkbg-parallax-depth-cards-style",
20 "viewScript": "bkbg-parallax-depth-cards-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "cards": {
32 "type": "array",
33 "default": [
34 {
35 "title": "Deep Space",
36 "subtitle": "Layer by layer",
37 "badge": "NEW",
38 "bgImage": "",
39 "bgColor": "#1a1035",
40 "icon": "\ud83c\udf0c",
41 "iconType": "custom-char",
42 "iconDashicon": "",
43 "iconImageUrl": "",
44 "tag": "Design"
45 },
46 {
47 "title": "Ocean Depths",
48 "subtitle": "Feel the current",
49 "badge": "HOT",
50 "bgImage": "",
51 "bgColor": "#0f2744",
52 "icon": "\ud83c\udf0a",
53 "iconType": "custom-char",
54 "iconDashicon": "",
55 "iconImageUrl": "",
56 "tag": "Motion"
57 },
58 {
59 "title": "Forest Floor",
60 "subtitle": "Layers of nature",
61 "badge": "ECO",
62 "bgImage": "",
63 "bgColor": "#0d2418",
64 "icon": "\ud83c\udf3f",
65 "iconType": "custom-char",
66 "iconDashicon": "",
67 "iconImageUrl": "",
68 "tag": "Nature"
69 }
70 ]
71 },
72 "columns": {
73 "type": "number",
74 "default": 3
75 },
76 "cardWidth": {
77 "type": "number",
78 "default": 320
79 },
80 "cardHeight": {
81 "type": "number",
82 "default": 420
83 },
84 "cardRadius": {
85 "type": "number",
86 "default": 24
87 },
88 "tiltStrength": {
89 "type": "number",
90 "default": 20
91 },
92 "depthStrength": {
93 "type": "number",
94 "default": 30
95 },
96 "showBadge": {
97 "type": "boolean",
98 "default": true
99 },
100 "showTag": {
101 "type": "boolean",
102 "default": true
103 },
104 "showIcon": {
105 "type": "boolean",
106 "default": true
107 },
108 "titleSize": {
109 "type": "number",
110 "default": 24
111 },
112 "subtitleSize": {
113 "type": "number",
114 "default": 14
115 },
116 "badgeFontSize": {
117 "type": "number",
118 "default": 11
119 },
120 "iconSize": {
121 "type": "number",
122 "default": 48
123 },
124 "titleColor": {
125 "type": "string",
126 "default": "#ffffff"
127 },
128 "subtitleColor": {
129 "type": "string",
130 "default": "rgba(255,255,255,0.7)"
131 },
132 "badgeBg": {
133 "type": "string",
134 "default": "#6366f1"
135 },
136 "badgeColor": {
137 "type": "string",
138 "default": "#ffffff"
139 },
140 "tagBg": {
141 "type": "string",
142 "default": "rgba(255,255,255,0.15)"
143 },
144 "tagColor": {
145 "type": "string",
146 "default": "#ffffff"
147 },
148 "overlayColor": {
149 "type": "string",
150 "default": "rgba(0,0,0,0.25)"
151 },
152 "glowColor": {
153 "type": "string",
154 "default": "rgba(99,102,241,0.5)"
155 },
156 "titleFontWeight": {
157 "type": "string",
158 "default": "700"
159 },
160 "subtitleFontWeight": {
161 "type": "string",
162 "default": "400"
163 },
164 "titleTypo": {
165 "type": "object",
166 "default": {}
167 },
168 "subtitleTypo": {
169 "type": "object",
170 "default": {}
171 }
172 }
173 }