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

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

157 lines 3.9 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/spotlight-reveal",
5 "title": "Spotlight Reveal",
6 "description": "A cursor-following spotlight that reveals content beneath a dark overlay. Move your mouse over the section to illuminate the hidden content.",
7 "category": "bkbg-effects",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-spotlight-reveal-editor",
10 "style": "bkbg-spotlight-reveal-style",
11 "viewScript": "bkbg-spotlight-reveal-frontend",
12 "icon": "visibility",
13 "supports": {
14 "html": false,
15 "anchor": true,
16 "className": true,
17 "align": [
18 "wide",
19 "full"
20 ]
21 },
22 "attributes": {
23 "heading": {
24 "type": "string",
25 "default": "Discover What's Hidden"
26 },
27 "subtext": {
28 "type": "string",
29 "default": "Move your cursor over this section to reveal the content beneath the darkness."
30 },
31 "eyebrow": {
32 "type": "string",
33 "default": "Spotlight Effect"
34 },
35 "showEyebrow": {
36 "type": "boolean",
37 "default": true
38 },
39 "showCta": {
40 "type": "boolean",
41 "default": true
42 },
43 "ctaLabel": {
44 "type": "string",
45 "default": "Explore Now"
46 },
47 "ctaUrl": {
48 "type": "string",
49 "default": "#"
50 },
51 "bgImageUrl": {
52 "type": "string",
53 "default": ""
54 },
55 "bgImageId": {
56 "type": "number",
57 "default": 0
58 },
59 "spotlightSize": {
60 "type": "number",
61 "default": 350
62 },
63 "spotlightSoft": {
64 "type": "number",
65 "default": 80
66 },
67 "triggerMode": {
68 "type": "string",
69 "default": "cursor"
70 },
71 "overlayColor": {
72 "type": "string",
73 "default": "#000000"
74 },
75 "overlayOpacity": {
76 "type": "number",
77 "default": 85
78 },
79 "revealColor": {
80 "type": "string",
81 "default": "#7c3aed"
82 },
83 "headingColor": {
84 "type": "string",
85 "default": "#ffffff"
86 },
87 "subtextColor": {
88 "type": "string",
89 "default": "#e5e7eb"
90 },
91 "eyebrowColor": {
92 "type": "string",
93 "default": "#a78bfa"
94 },
95 "ctaBg": {
96 "type": "string",
97 "default": "#7c3aed"
98 },
99 "ctaColor": {
100 "type": "string",
101 "default": "#ffffff"
102 },
103 "headingSize": {
104 "type": "number",
105 "default": 48
106 },
107 "headingFontWeight": {
108 "type": "string",
109 "default": "700"
110 },
111 "headingLineHeight": {
112 "type": "number",
113 "default": 1.2
114 },
115 "textSize": {
116 "type": "number",
117 "default": 18
118 },
119 "textLineHeight": {
120 "type": "number",
121 "default": 1.6
122 },
123 "eyebrowSize": {
124 "type": "number",
125 "default": 13
126 },
127 "maxWidth": {
128 "type": "number",
129 "default": 800
130 },
131 "paddingTop": {
132 "type": "number",
133 "default": 120
134 },
135 "paddingBottom": {
136 "type": "number",
137 "default": 120
138 },
139 "headingTypo": {
140 "type": "object",
141 "default": {}
142 },
143 "textTypo": {
144 "type": "object",
145 "default": {}
146 },
147 "eyebrowTypo": {
148 "type": "object",
149 "default": {}
150 },
151 "ctaTypo": {
152 "type": "object",
153 "default": {}
154 }
155 }
156 }
157