PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / morphing-text / block.json

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

141 lines 3.3 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/morphing-text",
5 "version": "1.0.0",
6 "title": "Morphing Text",
7 "category": "bkbg-effects",
8 "icon": "editor-textcolor",
9 "description": "Headline that smoothly morphs between multiple words with blur, crossfade, slide, or typewriter transitions.",
10 "keywords": [
11 "morph",
12 "text",
13 "animation",
14 "headline",
15 "typing",
16 "loop",
17 "words",
18 "blur"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-morphing-text-editor",
22 "style": "bkbg-morphing-text-style",
23 "viewScript": "bkbg-morphing-text-frontend",
24 "supports": {
25 "html": false,
26 "anchor": true,
27 "className": true,
28 "align": [
29 "wide",
30 "full"
31 ]
32 },
33 "attributes": {
34 "staticBefore": {
35 "type": "string",
36 "default": "We"
37 },
38 "staticAfter": {
39 "type": "string",
40 "default": ""
41 },
42 "words": {
43 "type": "array",
44 "default": [
45 "build websites",
46 "design brands",
47 "craft experiences",
48 "shape the future"
49 ]
50 },
51 "morphMode": {
52 "type": "string",
53 "default": "blur"
54 },
55 "duration": {
56 "type": "number",
57 "default": 2500
58 },
59 "pauseDuration": {
60 "type": "number",
61 "default": 1500
62 },
63 "tag": {
64 "type": "string",
65 "default": "h2"
66 },
67 "fontSize": {
68 "type": "integer",
69 "default": 56
70 },
71 "fontWeight": {
72 "type": "string",
73 "default": "800"
74 },
75 "letterSpacing": {
76 "type": "number",
77 "default": -1
78 },
79 "lineHeight": {
80 "type": "number",
81 "default": 1.2
82 },
83 "headingTypo": {
84 "type": "object",
85 "default": {}
86 },
87 "textAlign": {
88 "type": "string",
89 "default": "center"
90 },
91 "fontFamily": {
92 "type": "string",
93 "default": "inherit"
94 },
95 "staticColor": {
96 "type": "string",
97 "default": "#1e293b"
98 },
99 "morphColor": {
100 "type": "string",
101 "default": "#7c3aed"
102 },
103 "morphColor2": {
104 "type": "string",
105 "default": "#ec4899"
106 },
107 "useGradient": {
108 "type": "boolean",
109 "default": true
110 },
111 "showBg": {
112 "type": "boolean",
113 "default": false
114 },
115 "bgColor": {
116 "type": "string",
117 "default": "#ffffff"
118 },
119 "paddingV": {
120 "type": "integer",
121 "default": 32
122 },
123 "paddingH": {
124 "type": "integer",
125 "default": 24
126 },
127 "borderRadius": {
128 "type": "integer",
129 "default": 0
130 },
131 "loop": {
132 "type": "boolean",
133 "default": true
134 },
135 "cursor": {
136 "type": "boolean",
137 "default": false
138 }
139 }
140 }
141