| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/scrollytelling", |
| 5 |
"title": "Scrollytelling", |
| 6 |
"description": "Sticky background or image that updates as the user scrolls through text chapters.", |
| 7 |
"category": "bkbg-effects", |
| 8 |
"icon": "align-center", |
| 9 |
"keywords": [ |
| 10 |
"scroll", |
| 11 |
"sticky", |
| 12 |
"story", |
| 13 |
"chapter", |
| 14 |
"parallax", |
| 15 |
"narrative" |
| 16 |
], |
| 17 |
"textdomain": "blockenberg", |
| 18 |
"editorScript": "bkbg-scrollytelling-editor", |
| 19 |
"style": "bkbg-scrollytelling-style", |
| 20 |
"viewScript": "bkbg-scrollytelling-frontend", |
| 21 |
"supports": { |
| 22 |
"html": false, |
| 23 |
"align": [ |
| 24 |
"wide", |
| 25 |
"full" |
| 26 |
] |
| 27 |
}, |
| 28 |
"attributes": { |
| 29 |
"chapters": { |
| 30 |
"type": "array", |
| 31 |
"default": [ |
| 32 |
{ |
| 33 |
"title": "Chapter One", |
| 34 |
"eyebrow": "Introduction", |
| 35 |
"text": "The opening scene sets the stage for everything that follows.", |
| 36 |
"imageUrl": "", |
| 37 |
"imageId": 0, |
| 38 |
"imageAlt": "", |
| 39 |
"overlayColor": "#000000", |
| 40 |
"overlayOpacity": 40 |
| 41 |
}, |
| 42 |
{ |
| 43 |
"title": "Chapter Two", |
| 44 |
"eyebrow": "Rising Action", |
| 45 |
"text": "Conflict emerges and the narrative tension begins to build.", |
| 46 |
"imageUrl": "", |
| 47 |
"imageId": 0, |
| 48 |
"imageAlt": "", |
| 49 |
"overlayColor": "#000000", |
| 50 |
"overlayOpacity": 40 |
| 51 |
} |
| 52 |
] |
| 53 |
}, |
| 54 |
"defaultBgUrl": { |
| 55 |
"type": "string", |
| 56 |
"default": "" |
| 57 |
}, |
| 58 |
"defaultBgId": { |
| 59 |
"type": "number", |
| 60 |
"default": 0 |
| 61 |
}, |
| 62 |
"stickyHeight": { |
| 63 |
"type": "string", |
| 64 |
"default": "70vh" |
| 65 |
}, |
| 66 |
"textPosition": { |
| 67 |
"type": "string", |
| 68 |
"default": "left" |
| 69 |
}, |
| 70 |
"showProgress": { |
| 71 |
"type": "boolean", |
| 72 |
"default": true |
| 73 |
}, |
| 74 |
"transitionStyle": { |
| 75 |
"type": "string", |
| 76 |
"default": "fade" |
| 77 |
}, |
| 78 |
"panelWidth": { |
| 79 |
"type": "number", |
| 80 |
"default": 420 |
| 81 |
}, |
| 82 |
"eyebrowColor": { |
| 83 |
"type": "string", |
| 84 |
"default": "#a5b4fc" |
| 85 |
}, |
| 86 |
"titleColor": { |
| 87 |
"type": "string", |
| 88 |
"default": "#ffffff" |
| 89 |
}, |
| 90 |
"textColor": { |
| 91 |
"type": "string", |
| 92 |
"default": "#e5e7eb" |
| 93 |
}, |
| 94 |
"textBg": { |
| 95 |
"type": "string", |
| 96 |
"default": "" |
| 97 |
}, |
| 98 |
"progressColor": { |
| 99 |
"type": "string", |
| 100 |
"default": "#6366f1" |
| 101 |
}, |
| 102 |
"accentColor": { |
| 103 |
"type": "string", |
| 104 |
"default": "#6366f1" |
| 105 |
}, |
| 106 |
"paddingTop": { |
| 107 |
"type": "number", |
| 108 |
"default": 0 |
| 109 |
}, |
| 110 |
"paddingBottom": { |
| 111 |
"type": "number", |
| 112 |
"default": 0 |
| 113 |
}, |
| 114 |
"eyebrowFontSize": { |
| 115 |
"type": "number", |
| 116 |
"default": 12 |
| 117 |
}, |
| 118 |
"eyebrowFontWeight": { |
| 119 |
"type": "number", |
| 120 |
"default": 600 |
| 121 |
}, |
| 122 |
"titleFontSize": { |
| 123 |
"type": "number", |
| 124 |
"default": 18 |
| 125 |
}, |
| 126 |
"titleFontWeight": { |
| 127 |
"type": "number", |
| 128 |
"default": 700 |
| 129 |
}, |
| 130 |
"bodyFontSize": { |
| 131 |
"type": "number", |
| 132 |
"default": 14 |
| 133 |
}, |
| 134 |
"titleTypo": { |
| 135 |
"type": "object", |
| 136 |
"default": {} |
| 137 |
}, |
| 138 |
"eyebrowTypo": { |
| 139 |
"type": "object", |
| 140 |
"default": {} |
| 141 |
}, |
| 142 |
"bodyTypo": { |
| 143 |
"type": "object", |
| 144 |
"default": {} |
| 145 |
} |
| 146 |
} |
| 147 |
} |
| 148 |
|