| 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 |
|