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 / glitch-text / block.json

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

170 lines 4.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/glitch-text",
5 "title": "Glitch Text",
6 "category": "bkbg-effects",
7 "icon": "text",
8 "description": "Eye-catching glitch animation text with chromatic aberration, noise, scanlines, and digital distortion effects.",
9 "keywords": [
10 "glitch",
11 "text",
12 "animation",
13 "chromatic",
14 "distortion",
15 "cyberpunk",
16 "effect",
17 "noise",
18 "digital"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-glitch-text-editor",
22 "style": "bkbg-glitch-text-style",
23 "viewScript": "bkbg-glitch-text-frontend",
24 "attributes": {
25 "text": {
26 "type": "string",
27 "default": "GLITCH"
28 },
29 "tag": {
30 "type": "string",
31 "default": "h2"
32 },
33 "glitchType": {
34 "type": "string",
35 "default": "chromatic"
36 },
37 "trigger": {
38 "type": "string",
39 "default": "always"
40 },
41 "speed": {
42 "type": "string",
43 "default": "medium"
44 },
45 "customDuration": {
46 "type": "number",
47 "default": 800
48 },
49 "intensity": {
50 "type": "number",
51 "default": 6
52 },
53 "colorRed": {
54 "type": "string",
55 "default": "#ff0040"
56 },
57 "colorBlue": {
58 "type": "string",
59 "default": "#00e5ff"
60 },
61 "colorGreen": {
62 "type": "string",
63 "default": "#39ff14"
64 },
65 "textColor": {
66 "type": "string",
67 "default": "#ffffff"
68 },
69 "backgroundColor": {
70 "type": "string",
71 "default": "#0d0d0d"
72 },
73 "fontSize": {
74 "type": "number",
75 "default": 64
76 },
77 "fontSizeMobile": {
78 "type": "number",
79 "default": 36
80 },
81 "fontWeight": {
82 "type": "string",
83 "default": "900"
84 },
85 "letterSpacing": {
86 "type": "number",
87 "default": 4
88 },
89 "textTransform": {
90 "type": "string",
91 "default": "uppercase"
92 },
93 "textAlign": {
94 "type": "string",
95 "default": "center"
96 },
97 "paddingV": {
98 "type": "number",
99 "default": 40
100 },
101 "paddingH": {
102 "type": "number",
103 "default": 24
104 },
105 "showScanlines": {
106 "type": "boolean",
107 "default": false
108 },
109 "scanlineOpacity": {
110 "type": "number",
111 "default": 20
112 },
113 "showSubtext": {
114 "type": "boolean",
115 "default": false
116 },
117 "subtext": {
118 "type": "string",
119 "default": "System Error 404"
120 },
121 "subtextColor": {
122 "type": "string",
123 "default": "#888888"
124 },
125 "subtextSize": {
126 "type": "number",
127 "default": 14
128 },
129 "subtextSpacing": {
130 "type": "number",
131 "default": 16
132 },
133 "borderRadius": {
134 "type": "number",
135 "default": 0
136 },
137 "noiseCharset": {
138 "type": "string",
139 "default": "!<>-_\\/[]{}—=+*^?#"
140 },
141 "glitchIntervalMs": {
142 "type": "number",
143 "default": 4000
144 },
145 "glitchBurstDuration": {
146 "type": "number",
147 "default": 600
148 },
149 "showCursorBlink": {
150 "type": "boolean",
151 "default": false
152 },
153 "typoText": {
154 "type": "object",
155 "default": {}
156 },
157 "typoSubtext": {
158 "type": "object",
159 "default": {}
160 }
161 },
162 "supports": {
163 "html": false,
164 "align": [
165 "wide",
166 "full"
167 ]
168 }
169 }
170