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

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

92 lines 2.1 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/scroll-reveal",
5 "title": "Scroll Reveal",
6 "category": "bkbg-effects",
7 "icon": "visibility",
8 "description": "Wrap any blocks in a scroll-triggered reveal animation. Children animate into view when they enter the viewport.",
9 "keywords": [
10 "scroll",
11 "reveal",
12 "animate",
13 "animation",
14 "fade",
15 "slide",
16 "entrance",
17 "aos",
18 "intersection"
19 ],
20 "textdomain": "blockenberg",
21 "editorScript": "bkbg-scroll-reveal-editor",
22 "style": "bkbg-scroll-reveal-style",
23 "viewScript": "bkbg-scroll-reveal-frontend",
24 "attributes": {
25 "animation": {
26 "type": "string",
27 "default": "fade-up"
28 },
29 "duration": {
30 "type": "number",
31 "default": 600
32 },
33 "delay": {
34 "type": "number",
35 "default": 0
36 },
37 "easing": {
38 "type": "string",
39 "default": "ease"
40 },
41 "distance": {
42 "type": "number",
43 "default": 32
44 },
45 "threshold": {
46 "type": "number",
47 "default": 15
48 },
49 "once": {
50 "type": "boolean",
51 "default": true
52 },
53 "stagger": {
54 "type": "boolean",
55 "default": false
56 },
57 "staggerDelay": {
58 "type": "number",
59 "default": 100
60 },
61 "scale": {
62 "type": "number",
63 "default": 95
64 },
65 "rotate": {
66 "type": "number",
67 "default": 0
68 },
69 "opacity": {
70 "type": "number",
71 "default": 0
72 },
73 "paddingTop": {
74 "type": "number",
75 "default": 0
76 },
77 "paddingBottom": {
78 "type": "number",
79 "default": 0
80 }
81 },
82 "supports": {
83 "html": false,
84 "align": [
85 "wide",
86 "full"
87 ],
88 "anchor": true,
89 "className": true
90 }
91 }
92