PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / interactive-gradient-mesh / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/interactive-gradient-mesh/block.json

135 lines 3.3 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/interactive-gradient-mesh",
5 "title": "Interactive Gradient Mesh",
6 "description": "A mouse-reactive multi-colour gradient mesh background with optional heading and CTA overlay.",
7 "category": "bkbg-effects",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-interactive-gradient-mesh-editor",
10 "style": "bkbg-interactive-gradient-mesh-style",
11 "viewScript": "bkbg-interactive-gradient-mesh-frontend",
12 "icon": "art",
13 "supports": {
14 "html": false,
15 "anchor": true,
16 "className": true,
17 "align": [
18 "wide",
19 "full"
20 ]
21 },
22 "attributes": {
23 "colors": {
24 "type": "array",
25 "default": [
26 "#6366f1",
27 "#f43f5e",
28 "#06b6d4",
29 "#f59e0b",
30 "#10b981"
31 ]
32 },
33 "blobCount": {
34 "type": "integer",
35 "default": 5
36 },
37 "blobSize": {
38 "type": "integer",
39 "default": 55
40 },
41 "blurAmount": {
42 "type": "integer",
43 "default": 80
44 },
45 "blendMode": {
46 "type": "string",
47 "default": "screen"
48 },
49 "mouseInfluence": {
50 "type": "integer",
51 "default": 30
52 },
53 "autoAnimate": {
54 "type": "boolean",
55 "default": true
56 },
57 "animateSpeed": {
58 "type": "number",
59 "default": 0.6
60 },
61 "baseBg": {
62 "type": "string",
63 "default": "#0f172a"
64 },
65 "height": {
66 "type": "integer",
67 "default": 480
68 },
69 "showContent": {
70 "type": "boolean",
71 "default": true
72 },
73 "heading": {
74 "type": "string",
75 "default": "Beautiful Gradients"
76 },
77 "subheading": {
78 "type": "string",
79 "default": "Move your mouse to interact"
80 },
81 "ctaText": {
82 "type": "string",
83 "default": "Get Started"
84 },
85 "ctaUrl": {
86 "type": "string",
87 "default": "#"
88 },
89 "headingSize": {
90 "type": "integer",
91 "default": 48
92 },
93 "subheadingSize": {
94 "type": "integer",
95 "default": 18
96 },
97 "headingColor": {
98 "type": "string",
99 "default": "#ffffff"
100 },
101 "subheadingColor": {
102 "type": "string",
103 "default": "rgba(255,255,255,0.75)"
104 },
105 "ctaBg": {
106 "type": "string",
107 "default": "#ffffff"
108 },
109 "ctaColor": {
110 "type": "string",
111 "default": "#0f172a"
112 },
113 "ctaRadius": {
114 "type": "integer",
115 "default": 100
116 },
117 "contentAlign": {
118 "type": "string",
119 "default": "center"
120 },
121 "ctaSize": {
122 "type": "number",
123 "default": 15
124 },
125 "headingTypo": {
126 "type": "object",
127 "default": {}
128 },
129 "subheadingTypo": {
130 "type": "object",
131 "default": {}
132 }
133 }
134 }
135