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

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

87 lines 2.0 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/lottie",
5 "title": "Lottie Animation",
6 "category": "bkbg-media",
7 "icon": "format-video",
8 "description": "Play a Lottie JSON animation with trigger modes: autoplay, hover, click or scroll.",
9 "keywords": [
10 "lottie",
11 "animation",
12 "motion",
13 "json",
14 "svg"
15 ],
16 "textdomain": "blockenberg",
17 "editorScript": "bkbg-lottie-editor",
18 "style": "bkbg-lottie-style",
19 "viewScript": "bkbg-lottie-frontend",
20 "supports": {
21 "html": false,
22 "align": [
23 "center",
24 "wide",
25 "full"
26 ]
27 },
28 "attributes": {
29 "lottieUrl": {
30 "type": "string",
31 "default": ""
32 },
33 "playTrigger": {
34 "type": "string",
35 "default": "autoplay"
36 },
37 "loop": {
38 "type": "boolean",
39 "default": true
40 },
41 "speed": {
42 "type": "number",
43 "default": 1
44 },
45 "direction": {
46 "type": "string",
47 "default": "1"
48 },
49 "keepLastFrame": {
50 "type": "boolean",
51 "default": false
52 },
53 "width": {
54 "type": "number",
55 "default": 400
56 },
57 "autoWidth": {
58 "type": "boolean",
59 "default": false
60 },
61 "height": {
62 "type": "number",
63 "default": 400
64 },
65 "autoHeight": {
66 "type": "boolean",
67 "default": true
68 },
69 "align": {
70 "type": "string",
71 "default": "center"
72 },
73 "bgColor": {
74 "type": "string",
75 "default": ""
76 },
77 "borderRadius": {
78 "type": "number",
79 "default": 0
80 },
81 "padding": {
82 "type": "number",
83 "default": 0
84 },
85 }
86 }
87