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

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

112 lines 2.8 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/particle-text",
5 "title": "Particle Text",
6 "description": "HTML5 Canvas text that assembles from scattered particles on load. Hover to scatter and re-assemble. Perfect for hero sections and dramatic reveal effects.",
7 "category": "bkbg-effects",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-particle-text-editor",
10 "style": "bkbg-particle-text-style",
11 "viewScript": "bkbg-particle-text-frontend",
12 "supports": {
13 "html": false,
14 "anchor": true,
15 "className": true,
16 "align": [
17 "wide",
18 "full"
19 ]
20 },
21 "attributes": {
22 "text": {
23 "type": "string",
24 "default": "BLOCKENBERG"
25 },
26 "subtext": {
27 "type": "string",
28 "default": "Build anything. Fast."
29 },
30 "sampleFontSize": {
31 "type": "number",
32 "default": 100
33 },
34 "fontFamily": {
35 "type": "string",
36 "default": "system-ui, sans-serif"
37 },
38 "fontWeight": {
39 "type": "string",
40 "default": "900"
41 },
42 "particleSize": {
43 "type": "number",
44 "default": 2
45 },
46 "particleGap": {
47 "type": "number",
48 "default": 4
49 },
50 "particleColor": {
51 "type": "string",
52 "default": "#7c3aed"
53 },
54 "particleColor2": {
55 "type": "string",
56 "default": "#ec4899"
57 },
58 "useGradient": {
59 "type": "boolean",
60 "default": true
61 },
62 "bgColor": {
63 "type": "string",
64 "default": "#0a0a0f"
65 },
66 "subtextColor": {
67 "type": "string",
68 "default": "#94a3b8"
69 },
70 "subtextSize": {
71 "type": "number",
72 "default": 18
73 },
74 "canvasHeight": {
75 "type": "number",
76 "default": 300
77 },
78 "scatterRadius": {
79 "type": "number",
80 "default": 500
81 },
82 "enterDuration": {
83 "type": "number",
84 "default": 1200
85 },
86 "easing": {
87 "type": "string",
88 "default": "ease-out"
89 },
90 "hoverEffect": {
91 "type": "boolean",
92 "default": true
93 },
94 "hoverRadius": {
95 "type": "number",
96 "default": 80
97 },
98 "paddingTop": {
99 "type": "number",
100 "default": 80
101 },
102 "paddingBottom": {
103 "type": "number",
104 "default": 80
105 },
106 "subtextTypo": {
107 "type": "object",
108 "default": {}
109 }
110 }
111 }
112