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

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

97 lines 2.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/kinetic-text",
5 "title": "Kinetic Text",
6 "category": "bkbg-effects",
7 "description": "Text characters that scatter outward and snap back on hover with smooth physics animation.",
8 "keywords": [
9 "kinetic",
10 "scatter",
11 "hover",
12 "physics",
13 "text",
14 "animation",
15 "characters"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-kinetic-text-editor",
19 "style": "bkbg-kinetic-text-style",
20 "viewScript": "bkbg-kinetic-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": "Hover Me!"
34 },
35 "tag": {
36 "type": "string",
37 "default": "h2"
38 },
39 "trigger": {
40 "type": "string",
41 "default": "hover"
42 },
43 "scatterMode": {
44 "type": "string",
45 "default": "explode"
46 },
47 "scatterRadius": {
48 "type": "number",
49 "default": 120
50 },
51 "scatterDuration": {
52 "type": "number",
53 "default": 400
54 },
55 "returnDuration": {
56 "type": "number",
57 "default": 600
58 },
59 "stagger": {
60 "type": "number",
61 "default": 20
62 },
63 "fontSize": {
64 "type": "number",
65 "default": 56
66 },
67 "fontWeight": {
68 "type": "number",
69 "default": 700
70 },
71 "letterSpacing": {
72 "type": "number",
73 "default": 0
74 },
75 "textAlign": {
76 "type": "string",
77 "default": "center"
78 },
79 "textColor": {
80 "type": "string",
81 "default": "#0f172a"
82 },
83 "hoverColor": {
84 "type": "string",
85 "default": "#6366f1"
86 },
87 "bgColor": {
88 "type": "string",
89 "default": "transparent"
90 },
91 "textTypo": {
92 "type": "object",
93 "default": {}
94 }
95 }
96 }
97