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

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/handwriting-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 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/handwriting-text",
5 "title": "Handwriting Text",
6 "category": "bkbg-effects",
7 "description": "SVG text that animates in as if being handwritten — stroke reveal effect triggered on scroll or load.",
8 "keywords": [
9 "handwriting",
10 "svg",
11 "text",
12 "animation",
13 "stroke",
14 "cursive",
15 "draw"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-handwriting-text-editor",
19 "style": "bkbg-handwriting-text-style",
20 "viewScript": "bkbg-handwriting-text-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "text": {
32 "type": "string",
33 "default": "Beautiful Handwriting"
34 },
35 "fontFamily": {
36 "type": "string",
37 "default": "'Dancing Script', cursive"
38 },
39 "fontSize": {
40 "type": "number",
41 "default": 72
42 },
43 "fontWeight": {
44 "type": "string",
45 "default": "700"
46 },
47 "svgWidth": {
48 "type": "number",
49 "default": 900
50 },
51 "svgHeight": {
52 "type": "number",
53 "default": 140
54 },
55 "textX": {
56 "type": "number",
57 "default": 50
58 },
59 "textY": {
60 "type": "number",
61 "default": 110
62 },
63 "textAnchor": {
64 "type": "string",
65 "default": "middle"
66 },
67 "strokeWidth": {
68 "type": "number",
69 "default": 2
70 },
71 "duration": {
72 "type": "number",
73 "default": 3
74 },
75 "delay": {
76 "type": "number",
77 "default": 0.3
78 },
79 "trigger": {
80 "type": "string",
81 "default": "scroll"
82 },
83 "fillOnComplete": {
84 "type": "boolean",
85 "default": true
86 },
87 "fillDuration": {
88 "type": "number",
89 "default": 0.8
90 },
91 "repeatAnimation": {
92 "type": "boolean",
93 "default": false
94 },
95 "easing": {
96 "type": "string",
97 "default": "ease-in-out"
98 },
99 "showUnderline": {
100 "type": "boolean",
101 "default": false
102 },
103 "underlineWidth": {
104 "type": "number",
105 "default": 4
106 },
107 "underlineOffsetY": {
108 "type": "number",
109 "default": 12
110 },
111 "underlineDuration": {
112 "type": "number",
113 "default": 0.6
114 },
115 "textColor": {
116 "type": "string",
117 "default": "#0f172a"
118 },
119 "strokeColor": {
120 "type": "string",
121 "default": "#6366f1"
122 },
123 "underlineColor": {
124 "type": "string",
125 "default": "#6366f1"
126 },
127 "sectionBg": {
128 "type": "string",
129 "default": ""
130 },
131 "align2": {
132 "type": "string",
133 "default": "center"
134 },
135 "typoText": {
136 "type": "object",
137 "default": {}
138 }
139 }
140 }
141