| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/hovering-image-stack", |
| 5 |
"title": "Hovering Image Stack", |
| 6 |
"category": "bkbg-effects", |
| 7 |
"description": "A stack of images arranged in a fan/cascade that spreads outward on hover revealing all images.", |
| 8 |
"keywords": [ |
| 9 |
"images", |
| 10 |
"stack", |
| 11 |
"fan", |
| 12 |
"hover", |
| 13 |
"cascade", |
| 14 |
"gallery" |
| 15 |
], |
| 16 |
"textdomain": "blockenberg", |
| 17 |
"editorScript": "bkbg-hovering-image-stack-editor", |
| 18 |
"style": "bkbg-hovering-image-stack-style", |
| 19 |
"viewScript": "bkbg-hovering-image-stack-frontend", |
| 20 |
"supports": { |
| 21 |
"html": false, |
| 22 |
"anchor": true, |
| 23 |
"className": true, |
| 24 |
"align": [ |
| 25 |
"wide", |
| 26 |
"full" |
| 27 |
] |
| 28 |
}, |
| 29 |
"attributes": { |
| 30 |
"images": { |
| 31 |
"type": "array", |
| 32 |
"default": [ |
| 33 |
{ |
| 34 |
"url": "", |
| 35 |
"alt": "Image 1", |
| 36 |
"caption": "" |
| 37 |
}, |
| 38 |
{ |
| 39 |
"url": "", |
| 40 |
"alt": "Image 2", |
| 41 |
"caption": "" |
| 42 |
}, |
| 43 |
{ |
| 44 |
"url": "", |
| 45 |
"alt": "Image 3", |
| 46 |
"caption": "" |
| 47 |
}, |
| 48 |
{ |
| 49 |
"url": "", |
| 50 |
"alt": "Image 4", |
| 51 |
"caption": "" |
| 52 |
} |
| 53 |
] |
| 54 |
}, |
| 55 |
"spreadMode": { |
| 56 |
"type": "string", |
| 57 |
"default": "fan" |
| 58 |
}, |
| 59 |
"spreadAngle": { |
| 60 |
"type": "number", |
| 61 |
"default": 15 |
| 62 |
}, |
| 63 |
"spreadDist": { |
| 64 |
"type": "number", |
| 65 |
"default": 60 |
| 66 |
}, |
| 67 |
"imageWidth": { |
| 68 |
"type": "number", |
| 69 |
"default": 200 |
| 70 |
}, |
| 71 |
"imageHeight": { |
| 72 |
"type": "number", |
| 73 |
"default": 280 |
| 74 |
}, |
| 75 |
"imageRadius": { |
| 76 |
"type": "number", |
| 77 |
"default": 16 |
| 78 |
}, |
| 79 |
"showCaption": { |
| 80 |
"type": "boolean", |
| 81 |
"default": false |
| 82 |
}, |
| 83 |
"captionSize": { |
| 84 |
"type": "number", |
| 85 |
"default": 13 |
| 86 |
}, |
| 87 |
"shadowStrength": { |
| 88 |
"type": "number", |
| 89 |
"default": 30 |
| 90 |
}, |
| 91 |
"borderWidth": { |
| 92 |
"type": "number", |
| 93 |
"default": 3 |
| 94 |
}, |
| 95 |
"borderColor": { |
| 96 |
"type": "string", |
| 97 |
"default": "#ffffff" |
| 98 |
}, |
| 99 |
"bgColor": { |
| 100 |
"type": "string", |
| 101 |
"default": "transparent" |
| 102 |
}, |
| 103 |
"captionColor": { |
| 104 |
"type": "string", |
| 105 |
"default": "#0f172a" |
| 106 |
}, |
| 107 |
"captionBg": { |
| 108 |
"type": "string", |
| 109 |
"default": "#ffffff" |
| 110 |
}, |
| 111 |
"captionTypo": { |
| 112 |
"type": "object", |
| 113 |
"default": {} |
| 114 |
} |
| 115 |
} |
| 116 |
} |
| 117 |
|