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

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

101 lines 2.5 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/hotspot-image",
5 "title": "Hotspot Image",
6 "category": "bkbg-media",
7 "icon": "location-alt",
8 "description": "Image with interactive hotspot pins that reveal tooltips on hover or click.",
9 "keywords": [
10 "hotspot",
11 "image",
12 "pin",
13 "tooltip",
14 "annotation",
15 "interactive"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-hotspot-image-editor",
19 "editorStyle": "bkbg-hotspot-image-style",
20 "style": "bkbg-hotspot-image-style",
21 "viewScript": "bkbg-hotspot-image-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "imageUrl": {
33 "type": "string",
34 "default": ""
35 },
36 "imageId": {
37 "type": "number",
38 "default": 0
39 },
40 "imageAlt": {
41 "type": "string",
42 "default": ""
43 },
44 "hotspots": {
45 "type": "array",
46 "default": [
47 {
48 "x": 30,
49 "y": 40,
50 "title": "Feature One",
51 "content": "Description of this highlighted area.",
52 "tooltipPos": "right"
53 },
54 {
55 "x": 65,
56 "y": 25,
57 "title": "Feature Two",
58 "content": "Another annotation tooltip here.",
59 "tooltipPos": "bottom"
60 }
61 ]
62 },
63 "trigger": {
64 "type": "string",
65 "default": "hover"
66 },
67 "markerStyle": {
68 "type": "string",
69 "default": "pulse"
70 },
71 "markerColor": {
72 "type": "string",
73 "default": "#6c3fb5"
74 },
75 "tooltipBg": {
76 "type": "string",
77 "default": "#1e1e2e"
78 },
79 "tooltipText": {
80 "type": "string",
81 "default": "#ffffff"
82 },
83 "markerSize": {
84 "type": "number",
85 "default": 18
86 },
87 "borderRadius": {
88 "type": "number",
89 "default": 12
90 },
91 "titleTypo": {
92 "type": "object",
93 "default": {}
94 },
95 "contentTypo": {
96 "type": "object",
97 "default": {}
98 }
99 }
100 }
101