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 / video-hero / block.json

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

213 lines 5.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "name": "blockenberg/video-hero",
4 "title": "Video Hero",
5 "category": "bkbg-layout",
6 "icon": "video-alt3",
7 "description": "Hero section with video preview or background video, headline, CTA buttons and optional social proof.",
8 "keywords": [
9 "hero",
10 "video",
11 "demo",
12 "preview",
13 "showcase",
14 "landing",
15 "header",
16 "youtube",
17 "vimeo"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-video-hero-editor",
21 "editorStyle": "bkbg-video-hero-style",
22 "style": "bkbg-video-hero-style",
23 "supports": {
24 "html": false,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "eyebrow": {
32 "type": "string",
33 "default": "See it in action"
34 },
35 "showEyebrow": {
36 "type": "boolean",
37 "default": true
38 },
39 "heading": {
40 "type": "string",
41 "default": "Watch how it works in 2 minutes"
42 },
43 "subheading": {
44 "type": "string",
45 "default": "Everything you need to launch faster and grow smarter — all in one place."
46 },
47 "showSubheading": {
48 "type": "boolean",
49 "default": true
50 },
51 "ctaText": {
52 "type": "string",
53 "default": "Start free trial"
54 },
55 "ctaUrl": {
56 "type": "string",
57 "default": "#"
58 },
59 "showCta": {
60 "type": "boolean",
61 "default": true
62 },
63 "ctaSecondaryText": {
64 "type": "string",
65 "default": "Learn more"
66 },
67 "ctaSecondaryUrl": {
68 "type": "string",
69 "default": "#"
70 },
71 "showSecondaryCta": {
72 "type": "boolean",
73 "default": true
74 },
75 "videoUrl": {
76 "type": "string",
77 "default": "https://www.youtube.com/embed/dQw4w9WgXcQ"
78 },
79 "posterUrl": {
80 "type": "string",
81 "default": ""
82 },
83 "posterId": {
84 "type": "number",
85 "default": 0
86 },
87 "showPlayButton": {
88 "type": "boolean",
89 "default": true
90 },
91 "videoLayout": {
92 "type": "string",
93 "default": "below"
94 },
95 "aspectRatio": {
96 "type": "string",
97 "default": "16-9"
98 },
99 "videoRadius": {
100 "type": "number",
101 "default": 16
102 },
103 "videoShadow": {
104 "type": "boolean",
105 "default": true
106 },
107 "style": {
108 "type": "string",
109 "default": "dark"
110 },
111 "contentAlign": {
112 "type": "string",
113 "default": "center"
114 },
115 "maxWidth": {
116 "type": "number",
117 "default": 820
118 },
119 "paddingTop": {
120 "type": "number",
121 "default": 80
122 },
123 "paddingBottom": {
124 "type": "number",
125 "default": 64
126 },
127 "headingSize": {
128 "type": "number",
129 "default": 52
130 },
131 "headingWeight": {
132 "type": "number",
133 "default": 800
134 },
135 "subSize": {
136 "type": "number",
137 "default": 20
138 },
139 "eyebrowSize": {
140 "type": "number",
141 "default": 13
142 },
143 "ctaSize": {
144 "type": "number",
145 "default": 17
146 },
147 "headingTypo": {
148 "type": "object",
149 "default": {}
150 },
151 "subTypo": {
152 "type": "object",
153 "default": {}
154 },
155 "eyebrowTypo": {
156 "type": "object",
157 "default": {}
158 },
159 "ctaTypo": {
160 "type": "object",
161 "default": {}
162 },
163 "ctaRadius": {
164 "type": "number",
165 "default": 10
166 },
167 "bgColor": {
168 "type": "string",
169 "default": "#0f172a"
170 },
171 "headingColor": {
172 "type": "string",
173 "default": "#ffffff"
174 },
175 "subColor": {
176 "type": "string",
177 "default": "rgba(255,255,255,0.65)"
178 },
179 "eyebrowColor": {
180 "type": "string",
181 "default": "#a78bfa"
182 },
183 "accentColor": {
184 "type": "string",
185 "default": "#6c3fb5"
186 },
187 "btnBg": {
188 "type": "string",
189 "default": "#6c3fb5"
190 },
191 "btnText": {
192 "type": "string",
193 "default": "#ffffff"
194 },
195 "btn2Bg": {
196 "type": "string",
197 "default": "transparent"
198 },
199 "btn2Text": {
200 "type": "string",
201 "default": "rgba(255,255,255,0.85)"
202 },
203 "btn2Border": {
204 "type": "string",
205 "default": "rgba(255,255,255,0.25)"
206 },
207 "videoBorder": {
208 "type": "string",
209 "default": "rgba(255,255,255,0.1)"
210 }
211 }
212 }
213