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

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

171 lines 4.1 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/holographic-card",
5 "title": "Holographic Card",
6 "category": "bkbg-effects",
7 "icon": "art",
8 "description": "A card with an iridescent holographic foil surface effect that reacts to mouse movement with rainbow shimmer and 3D tilt.",
9 "keywords": [
10 "holographic",
11 "rainbow",
12 "foil",
13 "iridescent",
14 "tilt",
15 "3d",
16 "card",
17 "hover"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-holographic-card-editor",
21 "style": "bkbg-holographic-card-style",
22 "viewScript": "bkbg-holographic-card-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "title": {
34 "type": "string",
35 "default": "Holographic Card"
36 },
37 "subtitle": {
38 "type": "string",
39 "default": "Move your mouse over the card to see the effect"
40 },
41 "badge": {
42 "type": "string",
43 "default": "✦ Premium"
44 },
45 "showBadge": {
46 "type": "boolean",
47 "default": true
48 },
49 "imageUrl": {
50 "type": "string",
51 "default": ""
52 },
53 "imageAlt": {
54 "type": "string",
55 "default": ""
56 },
57 "linkUrl": {
58 "type": "string",
59 "default": ""
60 },
61 "linkText": {
62 "type": "string",
63 "default": "Explore Now"
64 },
65 "showLink": {
66 "type": "boolean",
67 "default": true
68 },
69 "cardWidth": {
70 "type": "number",
71 "default": 320
72 },
73 "cardHeight": {
74 "type": "number",
75 "default": 440
76 },
77 "cardRadius": {
78 "type": "number",
79 "default": 20
80 },
81 "tiltStrength": {
82 "type": "number",
83 "default": 15
84 },
85 "shineOpacity": {
86 "type": "number",
87 "default": 60
88 },
89 "glareOpacity": {
90 "type": "number",
91 "default": 40
92 },
93 "foilHue": {
94 "type": "number",
95 "default": 0
96 },
97 "foilSaturation": {
98 "type": "number",
99 "default": 80
100 },
101 "titleSize": {
102 "type": "number",
103 "default": 22
104 },
105 "subtitleSize": {
106 "type": "number",
107 "default": 14
108 },
109 "badgeFontSize": {
110 "type": "number",
111 "default": 12
112 },
113 "linkTextSize": {
114 "type": "number",
115 "default": 14
116 },
117 "titleFontWeight": {
118 "type": "string",
119 "default": "700"
120 },
121 "titleLineHeight": {
122 "type": "number",
123 "default": 1.3
124 },
125 "subtitleFontWeight": {
126 "type": "string",
127 "default": "400"
128 },
129 "subtitleLineHeight": {
130 "type": "number",
131 "default": 1.5
132 },
133 "titleTypo": {
134 "type": "object",
135 "default": {}
136 },
137 "subtitleTypo": {
138 "type": "object",
139 "default": {}
140 },
141 "cardBg": {
142 "type": "string",
143 "default": "#1a1035"
144 },
145 "titleColor": {
146 "type": "string",
147 "default": "#ffffff"
148 },
149 "subtitleColor": {
150 "type": "string",
151 "default": "rgba(255,255,255,0.7)"
152 },
153 "badgeBg": {
154 "type": "string",
155 "default": "rgba(255,255,255,0.15)"
156 },
157 "badgeColor": {
158 "type": "string",
159 "default": "#ffffff"
160 },
161 "linkBg": {
162 "type": "string",
163 "default": "rgba(255,255,255,0.15)"
164 },
165 "linkColor": {
166 "type": "string",
167 "default": "#ffffff"
168 }
169 }
170 }
171