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 / vertical-scroll-image / block.json

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

121 lines 3.0 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/vertical-scroll-image",
5 "title": "Vertical Scroll Image",
6 "description": "Display a tall or wide image in a fixed-height container. Hover to scroll through the full image vertically or horizontally. Perfect for showcasing app screenshots, infographics, or long designs.",
7 "category": "bkbg-effects",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-vertical-scroll-image-editor",
10 "style": "bkbg-vertical-scroll-image-style",
11 "viewScript": "bkbg-vertical-scroll-image-frontend",
12 "icon": "format-image",
13 "supports": {
14 "html": false,
15 "anchor": true,
16 "className": true,
17 "align": [
18 "wide",
19 "full"
20 ]
21 },
22 "attributes": {
23 "imageUrl": {
24 "type": "string",
25 "default": ""
26 },
27 "imageId": {
28 "type": "number",
29 "default": 0
30 },
31 "imageAlt": {
32 "type": "string",
33 "default": ""
34 },
35 "caption": {
36 "type": "string",
37 "default": ""
38 },
39 "showCaption": {
40 "type": "boolean",
41 "default": false
42 },
43 "label": {
44 "type": "string",
45 "default": "Scroll to explore"
46 },
47 "showLabel": {
48 "type": "boolean",
49 "default": true
50 },
51 "scrollDirection": {
52 "type": "string",
53 "default": "vertical"
54 },
55 "scrollTrigger": {
56 "type": "string",
57 "default": "hover"
58 },
59 "scrollDuration": {
60 "type": "number",
61 "default": 4
62 },
63 "containerHeight": {
64 "type": "number",
65 "default": 420
66 },
67 "maxWidth": {
68 "type": "number",
69 "default": 800
70 },
71 "borderRadius": {
72 "type": "number",
73 "default": 12
74 },
75 "shadowSize": {
76 "type": "string",
77 "default": "md"
78 },
79 "bgColor": {
80 "type": "string",
81 "default": "#f9fafb"
82 },
83 "borderColor": {
84 "type": "string",
85 "default": "#e5e7eb"
86 },
87 "captionColor": {
88 "type": "string",
89 "default": "#6b7280"
90 },
91 "labelBg": {
92 "type": "string",
93 "default": "rgba(0,0,0,0.55)"
94 },
95 "labelColor": {
96 "type": "string",
97 "default": "#ffffff"
98 },
99 "paddingTop": {
100 "type": "number",
101 "default": 48
102 },
103 "paddingBottom": {
104 "type": "number",
105 "default": 48
106 },
107 "labelSize": {
108 "type": "number",
109 "default": 12
110 },
111 "labelTypo": {
112 "type": "object",
113 "default": {}
114 },
115 "captionTypo": {
116 "type": "object",
117 "default": {}
118 }
119 }
120 }
121