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 / noise-section / block.json

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

180 lines 4.4 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/noise-section",
5 "title": "Noise / Grain Section",
6 "description": "Hero or section block with a cinematic animated film-grain noise overlay rendered via Canvas. Supports solid, gradient, and image backgrounds with full heading, subtext, and CTA controls.",
7 "category": "bkbg-effects",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-noise-section-editor",
10 "style": "bkbg-noise-section-style",
11 "viewScript": "bkbg-noise-section-frontend",
12 "supports": {
13 "html": false,
14 "anchor": true,
15 "className": true,
16 "align": [
17 "wide",
18 "full"
19 ]
20 },
21 "attributes": {
22 "heading": {
23 "type": "string",
24 "default": "Make Noise."
25 },
26 "subtext": {
27 "type": "string",
28 "default": "The gritty edge your brand deserves. Animated grain texture, zero compromise."
29 },
30 "tag": {
31 "type": "string",
32 "default": "h1"
33 },
34 "ctaLabel": {
35 "type": "string",
36 "default": "Get Started"
37 },
38 "ctaUrl": {
39 "type": "string",
40 "default": "#"
41 },
42 "ctaLabel2": {
43 "type": "string",
44 "default": ""
45 },
46 "ctaUrl2": {
47 "type": "string",
48 "default": "#"
49 },
50 "showCta": {
51 "type": "boolean",
52 "default": true
53 },
54 "showCta2": {
55 "type": "boolean",
56 "default": false
57 },
58 "textAlign": {
59 "type": "string",
60 "default": "center"
61 },
62 "sectionHeight": {
63 "type": "number",
64 "default": 600
65 },
66 "bgType": {
67 "type": "string",
68 "default": "gradient"
69 },
70 "bgColor": {
71 "type": "string",
72 "default": "#0a0a0f"
73 },
74 "bgColor2": {
75 "type": "string",
76 "default": "#1e1b4b"
77 },
78 "bgAngle": {
79 "type": "number",
80 "default": 135
81 },
82 "bgImage": {
83 "type": "string",
84 "default": ""
85 },
86 "bgImageId": {
87 "type": "number",
88 "default": 0
89 },
90 "bgImageOpacity": {
91 "type": "number",
92 "default": 0.5
93 },
94 "noiseOpacity": {
95 "type": "number",
96 "default": 0.3
97 },
98 "noiseTint": {
99 "type": "string",
100 "default": "dark"
101 },
102 "noiseFps": {
103 "type": "number",
104 "default": 12
105 },
106 "noiseScale": {
107 "type": "number",
108 "default": 1
109 },
110 "textColor": {
111 "type": "string",
112 "default": "#ffffff"
113 },
114 "subtextColor": {
115 "type": "string",
116 "default": "#94a3b8"
117 },
118 "ctaBg": {
119 "type": "string",
120 "default": "#ffffff"
121 },
122 "ctaColor": {
123 "type": "string",
124 "default": "#0a0a0f"
125 },
126 "ctaBg2": {
127 "type": "string",
128 "default": "transparent"
129 },
130 "ctaColor2": {
131 "type": "string",
132 "default": "#ffffff"
133 },
134 "ctaBorder2": {
135 "type": "string",
136 "default": "rgba(255,255,255,0.4)"
137 },
138 "fontSize": {
139 "type": "number",
140 "default": 72
141 },
142 "fontWeight": {
143 "type": "number",
144 "default": 800
145 },
146 "lineHeight": {
147 "type": "number",
148 "default": 1.05
149 },
150 "letterSpacing": {
151 "type": "number",
152 "default": -2
153 },
154 "subtextSize": {
155 "type": "number",
156 "default": 20
157 },
158 "headingTypo": {
159 "type": "object",
160 "default": {}
161 },
162 "subtextTypo": {
163 "type": "object",
164 "default": {}
165 },
166 "maxWidth": {
167 "type": "number",
168 "default": 800
169 },
170 "paddingTop": {
171 "type": "number",
172 "default": 100
173 },
174 "paddingBottom": {
175 "type": "number",
176 "default": 100
177 }
178 }
179 }
180