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

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

153 lines 3.6 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/animated-text",
5 "title": "Animated Text",
6 "category": "bkbg-effects",
7 "icon": "editor-textcolor",
8 "description": "Heading with animated cycling words — typewriter, fade, slide, or flip effects. Perfect for hero sections.",
9 "keywords": [
10 "animated",
11 "typewriter",
12 "typing",
13 "word",
14 "text",
15 "headline",
16 "hero",
17 "cycle"
18 ],
19 "textdomain": "blockenberg",
20 "editorScript": "bkbg-animated-text-editor",
21 "editorStyle": "bkbg-animated-text-style",
22 "style": "bkbg-animated-text-style",
23 "viewScript": "bkbg-animated-text-frontend",
24 "supports": {
25 "html": false,
26 "anchor": true,
27 "className": true,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "beforeText": {
35 "type": "string",
36 "default": "We build"
37 },
38 "words": {
39 "type": "array",
40 "default": [
41 "websites",
42 "apps",
43 "brands",
44 "experiences"
45 ]
46 },
47 "afterText": {
48 "type": "string",
49 "default": "that matter."
50 },
51 "effect": {
52 "type": "string",
53 "default": "typewriter"
54 },
55 "typingSpeed": {
56 "type": "number",
57 "default": 80
58 },
59 "deletingSpeed": {
60 "type": "number",
61 "default": 40
62 },
63 "pauseDuration": {
64 "type": "number",
65 "default": 2000
66 },
67 "loop": {
68 "type": "boolean",
69 "default": true
70 },
71 "showCursor": {
72 "type": "boolean",
73 "default": true
74 },
75 "cursorChar": {
76 "type": "string",
77 "default": "|"
78 },
79 "cursorBlinkSpeed": {
80 "type": "number",
81 "default": 530
82 },
83 "tag": {
84 "type": "string",
85 "default": "h2"
86 },
87 "textAlign": {
88 "type": "string",
89 "default": "left"
90 },
91 "fontSize": {
92 "type": "number",
93 "default": 48
94 },
95 "fontWeight": {
96 "type": "string",
97 "default": "700"
98 },
99 "lineHeight": {
100 "type": "number",
101 "default": 1.2
102 },
103 "letterSpacing": {
104 "type": "number",
105 "default": 0
106 },
107 "staticColor": {
108 "type": "string",
109 "default": "#0f172a"
110 },
111 "animatedColor": {
112 "type": "string",
113 "default": "#2563eb"
114 },
115 "cursorColor": {
116 "type": "string",
117 "default": "#2563eb"
118 },
119 "highlightBg": {
120 "type": "string",
121 "default": ""
122 },
123 "highlightPadding": {
124 "type": "number",
125 "default": 4
126 },
127 "highlightRadius": {
128 "type": "number",
129 "default": 4
130 },
131 "wordPlacement": {
132 "type": "string",
133 "default": "inline"
134 },
135 "wrapperPaddingTop": {
136 "type": "number",
137 "default": 0
138 },
139 "wrapperPaddingBottom": {
140 "type": "number",
141 "default": 0
142 },
143 "maxWidth": {
144 "type": "number",
145 "default": 0
146 },
147 "headingTypo": {
148 "type": "object",
149 "default": {}
150 }
151 }
152 }
153