| 1 |
{ |
| 2 |
"apiVersion": 3, |
| 3 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 4 |
"name": "blockenberg/post-slider", |
| 5 |
"title": "Post Slider", |
| 6 |
"category": "bkbg-blog", |
| 7 |
"icon": "slides", |
| 8 |
"description": "Hero-style slider cycling through posts with full-width background images and overlay captions.", |
| 9 |
"keywords": [ |
| 10 |
"post", |
| 11 |
"hero", |
| 12 |
"slider", |
| 13 |
"carousel", |
| 14 |
"featured", |
| 15 |
"image" |
| 16 |
], |
| 17 |
"textdomain": "blockenberg", |
| 18 |
"editorScript": "bkbg-post-slider-editor", |
| 19 |
"editorStyle": "bkbg-post-slider-style", |
| 20 |
"style": "bkbg-post-slider-style", |
| 21 |
"viewScript": "bkbg-post-slider-frontend", |
| 22 |
"supports": { |
| 23 |
"html": false, |
| 24 |
"anchor": true, |
| 25 |
"className": true, |
| 26 |
"align": [ |
| 27 |
"wide", |
| 28 |
"full" |
| 29 |
] |
| 30 |
}, |
| 31 |
"attributes": { |
| 32 |
"slides": { |
| 33 |
"type": "array", |
| 34 |
"default": [ |
| 35 |
{ |
| 36 |
"imageUrl": "", |
| 37 |
"imageId": 0, |
| 38 |
"title": "Slide One Headline", |
| 39 |
"excerpt": "A short caption describing this featured post or section.", |
| 40 |
"btnLabel": "Read More", |
| 41 |
"btnUrl": "#" |
| 42 |
}, |
| 43 |
{ |
| 44 |
"imageUrl": "", |
| 45 |
"imageId": 0, |
| 46 |
"title": "Slide Two Headline", |
| 47 |
"excerpt": "A short caption describing this featured post or section.", |
| 48 |
"btnLabel": "Read More", |
| 49 |
"btnUrl": "#" |
| 50 |
} |
| 51 |
] |
| 52 |
}, |
| 53 |
"height": { |
| 54 |
"type": "number", |
| 55 |
"default": 500 |
| 56 |
}, |
| 57 |
"heightUnit": { |
| 58 |
"type": "string", |
| 59 |
"default": "px" |
| 60 |
}, |
| 61 |
"transition": { |
| 62 |
"type": "string", |
| 63 |
"default": "fade" |
| 64 |
}, |
| 65 |
"autoplay": { |
| 66 |
"type": "boolean", |
| 67 |
"default": true |
| 68 |
}, |
| 69 |
"speed": { |
| 70 |
"type": "number", |
| 71 |
"default": 4000 |
| 72 |
}, |
| 73 |
"overlayBg": { |
| 74 |
"type": "string", |
| 75 |
"default": "rgba(0,0,0,0.45)" |
| 76 |
}, |
| 77 |
"captionAlign": { |
| 78 |
"type": "string", |
| 79 |
"default": "left" |
| 80 |
}, |
| 81 |
"textColor": { |
| 82 |
"type": "string", |
| 83 |
"default": "#ffffff" |
| 84 |
}, |
| 85 |
"accentColor": { |
| 86 |
"type": "string", |
| 87 |
"default": "#6c3fb5" |
| 88 |
}, |
| 89 |
"showArrows": { |
| 90 |
"type": "boolean", |
| 91 |
"default": true |
| 92 |
}, |
| 93 |
"showDots": { |
| 94 |
"type": "boolean", |
| 95 |
"default": true |
| 96 |
}, |
| 97 |
"borderRadius": { |
| 98 |
"type": "number", |
| 99 |
"default": 0 |
| 100 |
}, |
| 101 |
"titleTypo": { |
| 102 |
"type": "object", |
| 103 |
"default": {} |
| 104 |
}, |
| 105 |
"excerptTypo": { |
| 106 |
"type": "object", |
| 107 |
"default": {} |
| 108 |
} |
| 109 |
} |
| 110 |
} |