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 / icon-cloud / block.json

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

150 lines 3.6 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/icon-cloud",
5 "title": "Icon Cloud",
6 "description": "An interactive 3D sphere of icons, emojis, or tag words that auto-rotates and responds to mouse movement. Great for showcasing skills, technologies, or topics.",
7 "category": "bkbg-effects",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-icon-cloud-editor",
10 "style": "bkbg-icon-cloud-style",
11 "viewScript": "bkbg-icon-cloud-frontend",
12 "supports": {
13 "html": false,
14 "anchor": true,
15 "className": true,
16 "align": [
17 "wide",
18 "full"
19 ]
20 },
21 "attributes": {
22 "items": {
23 "type": "array",
24 "default": [
25 "React",
26 "Vue",
27 "Angular",
28 "TypeScript",
29 "JavaScript",
30 "Node.js",
31 "Python",
32 "GraphQL",
33 "Docker",
34 "Figma",
35 "Tailwind",
36 "AWS",
37 "Redis",
38 "MongoDB",
39 "PostgreSQL",
40 "Kubernetes",
41 "Git",
42 "Webpack",
43 "Vite",
44 "Next.js",
45 "Rust",
46 "Go",
47 "Swift",
48 "Kotlin",
49 "Flutter"
50 ]
51 },
52 "cloudRadius": {
53 "type": "number",
54 "default": 220
55 },
56 "autoRotateX": {
57 "type": "number",
58 "default": 0.002
59 },
60 "autoRotateY": {
61 "type": "number",
62 "default": 0.004
63 },
64 "mouseEffect": {
65 "type": "boolean",
66 "default": true
67 },
68 "mouseStrength": {
69 "type": "number",
70 "default": 0.06
71 },
72 "perspective": {
73 "type": "number",
74 "default": 900
75 },
76 "fontSize": {
77 "type": "number",
78 "default": 14
79 },
80 "fontWeight": {
81 "type": "string",
82 "default": "600"
83 },
84 "lineHeight": {
85 "type": "number",
86 "default": 1.4
87 },
88 "itemPadding": {
89 "type": "number",
90 "default": 6
91 },
92 "itemBorderRadius": {
93 "type": "number",
94 "default": 6
95 },
96 "bgColor": {
97 "type": "string",
98 "default": ""
99 },
100 "cloudHeight": {
101 "type": "number",
102 "default": 500
103 },
104 "colorMode": {
105 "type": "string",
106 "default": "gradient"
107 },
108 "colorFrom": {
109 "type": "string",
110 "default": "#7c3aed"
111 },
112 "colorTo": {
113 "type": "string",
114 "default": "#ec4899"
115 },
116 "itemBg": {
117 "type": "string",
118 "default": "#1e1b4b"
119 },
120 "itemBorder": {
121 "type": "string",
122 "default": "#7c3aed44"
123 },
124 "textColor": {
125 "type": "string",
126 "default": "#e2e8f0"
127 },
128 "hoverColor": {
129 "type": "string",
130 "default": "#ffffff"
131 },
132 "hoverBg": {
133 "type": "string",
134 "default": "#7c3aed"
135 },
136 "showBackground": {
137 "type": "boolean",
138 "default": false
139 },
140 "depthFade": {
141 "type": "boolean",
142 "default": true
143 },
144 "itemTypo": {
145 "type": "object",
146 "default": {}
147 }
148 }
149 }
150