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 / cursor-spotlight / block.json

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

147 lines 3.5 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/cursor-spotlight",
5 "version": "1.0.0",
6 "title": "Cursor Spotlight",
7 "category": "bkbg-effects",
8 "icon": "visibility",
9 "description": "A dark section with a radial spotlight that follows the cursor, dramatically revealing the content beneath.",
10 "keywords": [
11 "spotlight",
12 "cursor",
13 "mouse",
14 "reveal",
15 "dark",
16 "torch",
17 "interactive"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-cursor-spotlight-editor",
21 "style": "bkbg-cursor-spotlight-style",
22 "viewScript": "bkbg-cursor-spotlight-frontend",
23 "supports": {
24 "html": false,
25 "anchor": true,
26 "className": true,
27 "align": [
28 "wide",
29 "full"
30 ]
31 },
32 "attributes": {
33 "heading": {
34 "type": "string",
35 "default": "Move your cursor to reveal"
36 },
37 "subtext": {
38 "type": "string",
39 "default": "Interactive spotlight effect — your cursor lights the way"
40 },
41 "tag": {
42 "type": "string",
43 "default": "h2"
44 },
45 "spotlightSize": {
46 "type": "integer",
47 "default": 280
48 },
49 "spotlightBlur": {
50 "type": "integer",
51 "default": 40
52 },
53 "spotlightOpacity": {
54 "type": "number",
55 "default": 0.85
56 },
57 "dimColor": {
58 "type": "string",
59 "default": "#000000"
60 },
61 "dimOpacity": {
62 "type": "number",
63 "default": 0.92
64 },
65 "spotColor": {
66 "type": "string",
67 "default": "#ffffff"
68 },
69 "lightTint": {
70 "type": "string",
71 "default": ""
72 },
73 "sectionHeight": {
74 "type": "integer",
75 "default": 500
76 },
77 "bgColor": {
78 "type": "string",
79 "default": "#0c0a1e"
80 },
81 "bgImage": {
82 "type": "string",
83 "default": ""
84 },
85 "bgImageId": {
86 "type": "integer",
87 "default": 0
88 },
89 "bgImageOpacity": {
90 "type": "number",
91 "default": 0.5
92 },
93 "textColor": {
94 "type": "string",
95 "default": "#ffffff"
96 },
97 "accentColor": {
98 "type": "string",
99 "default": "#a78bfa"
100 },
101 "fontSize": {
102 "type": "integer",
103 "default": 48
104 },
105 "fontWeight": {
106 "type": "string",
107 "default": "800"
108 },
109 "textAlign": {
110 "type": "string",
111 "default": "center"
112 },
113 "showHint": {
114 "type": "boolean",
115 "default": true
116 },
117 "hintText": {
118 "type": "string",
119 "default": "Move cursor to reveal"
120 },
121 "idleMode": {
122 "type": "string",
123 "default": "center"
124 },
125 "followSmooth": {
126 "type": "boolean",
127 "default": true
128 },
129 "borderRadius": {
130 "type": "integer",
131 "default": 16
132 },
133 "subtextSize": {
134 "type": "number",
135 "default": 18
136 },
137 "typoHeading": {
138 "type": "object",
139 "default": {}
140 },
141 "typoSubtext": {
142 "type": "object",
143 "default": {}
144 }
145 }
146 }
147