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

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

139 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 "name": "blockenberg/parallax-section",
4 "title": "Parallax Section",
5 "category": "bkbg-effects",
6 "icon": "align-full-width",
7 "description": "A full-width content section with a background image that scrolls at a different speed for a depth parallax effect.",
8 "keywords": [
9 "parallax",
10 "section",
11 "background",
12 "scroll",
13 "depth",
14 "hero"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-parallax-section-editor",
18 "editorStyle": "bkbg-parallax-section-style",
19 "style": "bkbg-parallax-section-style",
20 "viewScript": "bkbg-parallax-section-frontend",
21 "supports": {
22 "html": false,
23 "align": [
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "bgImageUrl": {
30 "type": "string",
31 "default": ""
32 },
33 "bgImageId": {
34 "type": "number",
35 "default": 0
36 },
37 "bgImageAlt": {
38 "type": "string",
39 "default": ""
40 },
41 "parallaxSpeed": {
42 "type": "number",
43 "default": 0.4
44 },
45 "parallaxEnabled": {
46 "type": "boolean",
47 "default": true
48 },
49 "bgColor": {
50 "type": "string",
51 "default": "#1e1e1e"
52 },
53 "bgPosition": {
54 "type": "string",
55 "default": "center center"
56 },
57 "bgSize": {
58 "type": "string",
59 "default": "cover"
60 },
61 "bgRepeat": {
62 "type": "string",
63 "default": "no-repeat"
64 },
65 "bgBlur": {
66 "type": "number",
67 "default": 0
68 },
69 "overlayColor": {
70 "type": "string",
71 "default": "#000000"
72 },
73 "overlayOpacity": {
74 "type": "number",
75 "default": 40
76 },
77 "overlayGradient": {
78 "type": "boolean",
79 "default": false
80 },
81 "overlayGradientStart": {
82 "type": "string",
83 "default": "#000000"
84 },
85 "overlayGradientEnd": {
86 "type": "string",
87 "default": "transparent"
88 },
89 "overlayGradientDir": {
90 "type": "string",
91 "default": "to bottom"
92 },
93 "minHeight": {
94 "type": "number",
95 "default": 500
96 },
97 "paddingTop": {
98 "type": "number",
99 "default": 80
100 },
101 "paddingBottom": {
102 "type": "number",
103 "default": 80
104 },
105 "paddingLeft": {
106 "type": "number",
107 "default": 24
108 },
109 "paddingRight": {
110 "type": "number",
111 "default": 24
112 },
113 "contentAlign": {
114 "type": "string",
115 "default": "center"
116 },
117 "contentVAlign": {
118 "type": "string",
119 "default": "center"
120 },
121 "contentMaxWidth": {
122 "type": "number",
123 "default": 800
124 },
125 "textColor": {
126 "type": "string",
127 "default": "#ffffff"
128 },
129 "fixedBackground": {
130 "type": "boolean",
131 "default": false
132 },
133 "borderRadius": {
134 "type": "number",
135 "default": 0
136 }
137 }
138 }
139