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

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

154 lines 3.7 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/gradient-text-animator",
5 "version": "1.0.0",
6 "title": "Gradient Text Animator",
7 "category": "bkbg-effects",
8 "icon": "editor-textcolor",
9 "description": "Animated gradient-filled text with multiple animation modes — shift, pulse, wave, rainbow, and reveal.",
10 "keywords": [
11 "gradient",
12 "text",
13 "animation",
14 "heading",
15 "rainbow",
16 "wave"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-gradient-text-animator-editor",
20 "style": "bkbg-gradient-text-animator-style",
21 "viewScript": "bkbg-gradient-text-animator-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "text": {
33 "type": "string",
34 "default": "Animated Gradient Text"
35 },
36 "tag": {
37 "type": "string",
38 "default": "h2"
39 },
40 "fontSize": {
41 "type": "integer",
42 "default": 56
43 },
44 "fontWeight": {
45 "type": "string",
46 "default": "800"
47 },
48 "letterSpacing": {
49 "type": "number",
50 "default": -1
51 },
52 "lineHeight": {
53 "type": "number",
54 "default": 1.15
55 },
56 "textAlign": {
57 "type": "string",
58 "default": "center"
59 },
60 "fontFamily": {
61 "type": "string",
62 "default": "inherit"
63 },
64 "animationType": {
65 "type": "string",
66 "default": "shift"
67 },
68 "animationSpeed": {
69 "type": "number",
70 "default": 4
71 },
72 "direction": {
73 "type": "string",
74 "default": "horizontal"
75 },
76 "color1": {
77 "type": "string",
78 "default": "#f59e0b"
79 },
80 "color2": {
81 "type": "string",
82 "default": "#ec4899"
83 },
84 "color3": {
85 "type": "string",
86 "default": "#8b5cf6"
87 },
88 "color4": {
89 "type": "string",
90 "default": "#06b6d4"
91 },
92 "stopCount": {
93 "type": "integer",
94 "default": 4
95 },
96 "glowEffect": {
97 "type": "boolean",
98 "default": false
99 },
100 "glowBlur": {
101 "type": "integer",
102 "default": 20
103 },
104 "glowOpacity": {
105 "type": "number",
106 "default": 0.6
107 },
108 "showBg": {
109 "type": "boolean",
110 "default": false
111 },
112 "bgColor": {
113 "type": "string",
114 "default": "#0f172a"
115 },
116 "paddingV": {
117 "type": "integer",
118 "default": 24
119 },
120 "paddingH": {
121 "type": "integer",
122 "default": 24
123 },
124 "borderRadius": {
125 "type": "integer",
126 "default": 0
127 },
128 "strokeEffect": {
129 "type": "boolean",
130 "default": false
131 },
132 "strokeWidth": {
133 "type": "integer",
134 "default": 2
135 },
136 "strokeColor": {
137 "type": "string",
138 "default": "#ffffff"
139 },
140 "pauseOnHover": {
141 "type": "boolean",
142 "default": false
143 },
144 "reverseOnHover": {
145 "type": "boolean",
146 "default": false
147 },
148 "typoText": {
149 "type": "object",
150 "default": {}
151 }
152 }
153 }
154