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

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

116 lines 2.9 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/text-reveal-scroll",
5 "title": "Text Reveal on Scroll",
6 "description": "Cinematic scroll-triggered text reveal: words or characters animate in one by one as the section enters the viewport. Supports fade, slide-up, clip, and blur reveal modes with staggered delays.",
7 "category": "bkbg-effects",
8 "textdomain": "blockenberg",
9 "editorScript": "bkbg-text-reveal-scroll-editor",
10 "style": "bkbg-text-reveal-scroll-style",
11 "viewScript": "bkbg-text-reveal-scroll-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": "We craft digital experiences that people love and businesses trust."
25 },
26 "subtext": {
27 "type": "string",
28 "default": ""
29 },
30 "tag": {
31 "type": "string",
32 "default": "h2"
33 },
34 "revealUnit": {
35 "type": "string",
36 "default": "word"
37 },
38 "revealAnim": {
39 "type": "string",
40 "default": "slide-up"
41 },
42 "stagger": {
43 "type": "number",
44 "default": 60
45 },
46 "duration": {
47 "type": "number",
48 "default": 600
49 },
50 "triggerOffset": {
51 "type": "number",
52 "default": 15
53 },
54 "once": {
55 "type": "boolean",
56 "default": true
57 },
58 "textAlign": {
59 "type": "string",
60 "default": "center"
61 },
62 "titleTypo": {
63 "type": "object",
64 "default": {}
65 },
66 "subtextTypo": {
67 "type": "object",
68 "default": {}
69 },
70 "paddingTop": {
71 "type": "number",
72 "default": 80
73 },
74 "paddingBottom": {
75 "type": "number",
76 "default": 80
77 },
78 "maxWidth": {
79 "type": "number",
80 "default": 900
81 },
82 "bgColor": {
83 "type": "string",
84 "default": ""
85 },
86 "textColor": {
87 "type": "string",
88 "default": "#0f172a"
89 },
90 "subtextColor": {
91 "type": "string",
92 "default": "#64748b"
93 },
94 "accentColor": {
95 "type": "string",
96 "default": "#7c3aed"
97 },
98 "accentWords": {
99 "type": "string",
100 "default": ""
101 },
102 "useGradient": {
103 "type": "boolean",
104 "default": false
105 },
106 "gradFrom": {
107 "type": "string",
108 "default": "#7c3aed"
109 },
110 "gradTo": {
111 "type": "string",
112 "default": "#ec4899"
113 }
114 }
115 }
116