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

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

146 lines 3.5 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/tilt-card",
5 "title": "Tilt Card",
6 "category": "bkbg-effects",
7 "icon": "screenoptions",
8 "description": "Card with 3D perspective tilt effect on mouse hover. Rich content with image, heading, text, icon, and link.",
9 "keywords": [
10 "tilt",
11 "3d",
12 "hover",
13 "card",
14 "perspective",
15 "interactive"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-tilt-card-editor",
19 "editorStyle": "bkbg-tilt-card-style",
20 "style": "bkbg-tilt-card-style",
21 "viewScript": "bkbg-tilt-card-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true
26 },
27 "attributes": {
28 "imageUrl": {
29 "type": "string",
30 "default": ""
31 },
32 "imageId": {
33 "type": "number",
34 "default": 0
35 },
36 "icon": {
37 "type": "string",
38 "default": "star-filled"
39 },
40 "showIcon": {
41 "type": "boolean",
42 "default": false
43 },
44 "heading": {
45 "type": "string",
46 "default": "Stunning Tilt Effect"
47 },
48 "text": {
49 "type": "string",
50 "default": "This card rotates in 3D as you move your mouse over it, creating a premium interactive feel."
51 },
52 "linkLabel": {
53 "type": "string",
54 "default": "Learn more →"
55 },
56 "linkUrl": {
57 "type": "string",
58 "default": "#"
59 },
60 "showLink": {
61 "type": "boolean",
62 "default": true
63 },
64 "tiltMax": {
65 "type": "number",
66 "default": 15
67 },
68 "tiltScale": {
69 "type": "number",
70 "default": 105
71 },
72 "glareEffect": {
73 "type": "boolean",
74 "default": true
75 },
76 "glareOpacity": {
77 "type": "number",
78 "default": 30
79 },
80 "perspective": {
81 "type": "number",
82 "default": 800
83 },
84 "cardBg": {
85 "type": "string",
86 "default": "#ffffff"
87 },
88 "cardBorder": {
89 "type": "string",
90 "default": "#e5e7eb"
91 },
92 "cardRadius": {
93 "type": "number",
94 "default": 20
95 },
96 "cardShadow": {
97 "type": "boolean",
98 "default": true
99 },
100 "cardWidth": {
101 "type": "number",
102 "default": 340
103 },
104 "cardPadding": {
105 "type": "number",
106 "default": 28
107 },
108 "imgHeight": {
109 "type": "number",
110 "default": 180
111 },
112 "headingColor": {
113 "type": "string",
114 "default": "#1f2937"
115 },
116 "textColor": {
117 "type": "string",
118 "default": "#6b7280"
119 },
120 "linkColor": {
121 "type": "string",
122 "default": "#6c3fb5"
123 },
124 "iconColor": {
125 "type": "string",
126 "default": "#6c3fb5"
127 },
128 "iconSize": {
129 "type": "number",
130 "default": 40
131 },
132 "headingTypo": {
133 "type": "object",
134 "default": {}
135 },
136 "bodyTypo": {
137 "type": "object",
138 "default": {}
139 },
140 "accentColor": {
141 "type": "string",
142 "default": "#6c3fb5"
143 }
144 }
145 }
146