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 / typing-effect / block.json

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

109 lines 2.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/typing-effect",
5 "title": "Typing Effect",
6 "category": "bkbg-effects",
7 "icon": "editor-insertmore",
8 "description": "Animated typewriter text that cycles through multiple phrases with a blinking cursor.",
9 "keywords": [
10 "typing",
11 "typewriter",
12 "animated",
13 "text",
14 "cursor"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-typing-effect-editor",
18 "editorStyle": "bkbg-typing-effect-style",
19 "style": "bkbg-typing-effect-style",
20 "viewScript": "bkbg-typing-effect-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "prefix": {
32 "type": "string",
33 "default": "We build "
34 },
35 "phrases": {
36 "type": "string",
37 "default": "beautiful websites,powerful apps,amazing brands"
38 },
39 "suffix": {
40 "type": "string",
41 "default": ""
42 },
43 "tag": {
44 "type": "string",
45 "default": "h2"
46 },
47 "typeSpeed": {
48 "type": "number",
49 "default": 80
50 },
51 "deleteSpeed": {
52 "type": "number",
53 "default": 40
54 },
55 "pauseDelay": {
56 "type": "number",
57 "default": 1800
58 },
59 "loop": {
60 "type": "boolean",
61 "default": true
62 },
63 "cursorChar": {
64 "type": "string",
65 "default": "|"
66 },
67 "cursorBlink": {
68 "type": "boolean",
69 "default": true
70 },
71 "textTypo": {
72 "type": "object",
73 "default": {}
74 },
75 "textAlign": {
76 "type": "string",
77 "default": "center"
78 },
79 "prefixColor": {
80 "type": "string",
81 "default": "#1f2937"
82 },
83 "typedColor": {
84 "type": "string",
85 "default": "#6c3fb5"
86 },
87 "suffixColor": {
88 "type": "string",
89 "default": "#1f2937"
90 },
91 "cursorColor": {
92 "type": "string",
93 "default": "#6c3fb5"
94 },
95 "bgColor": {
96 "type": "string",
97 "default": ""
98 },
99 "paddingTop": {
100 "type": "number",
101 "default": 32
102 },
103 "paddingBottom": {
104 "type": "number",
105 "default": 32
106 }
107 }
108 }
109