| 1 |
{ |
| 2 |
"$schema": "https://schemas.wp.org/trunk/block.json", |
| 3 |
"apiVersion": 3, |
| 4 |
"name": "blockenberg/split-screen", |
| 5 |
"title": "Split Screen", |
| 6 |
"category": "bkbg-layout", |
| 7 |
"icon": "columns", |
| 8 |
"description": "Two-panel side-by-side layout with independent backgrounds, content, and optional scroll-snap.", |
| 9 |
"keywords": [ |
| 10 |
"split", |
| 11 |
"screen", |
| 12 |
"two column", |
| 13 |
"hero", |
| 14 |
"half" |
| 15 |
], |
| 16 |
"textdomain": "blockenberg", |
| 17 |
"editorScript": "bkbg-split-screen-editor", |
| 18 |
"editorStyle": "bkbg-split-screen-style", |
| 19 |
"style": "bkbg-split-screen-style", |
| 20 |
"viewScript": "bkbg-split-screen-frontend", |
| 21 |
"supports": { |
| 22 |
"html": false, |
| 23 |
"anchor": true, |
| 24 |
"className": true, |
| 25 |
"align": [ |
| 26 |
"wide", |
| 27 |
"full" |
| 28 |
] |
| 29 |
}, |
| 30 |
"attributes": { |
| 31 |
"minHeight": { |
| 32 |
"type": "number", |
| 33 |
"default": 500 |
| 34 |
}, |
| 35 |
"splitRatio": { |
| 36 |
"type": "string", |
| 37 |
"default": "50-50" |
| 38 |
}, |
| 39 |
"stackOnMobile": { |
| 40 |
"type": "boolean", |
| 41 |
"default": true |
| 42 |
}, |
| 43 |
"verticalAlign": { |
| 44 |
"type": "string", |
| 45 |
"default": "center" |
| 46 |
}, |
| 47 |
"gap": { |
| 48 |
"type": "number", |
| 49 |
"default": 0 |
| 50 |
}, |
| 51 |
"leftBgType": { |
| 52 |
"type": "string", |
| 53 |
"default": "color" |
| 54 |
}, |
| 55 |
"leftBgColor": { |
| 56 |
"type": "string", |
| 57 |
"default": "#6c3fb5" |
| 58 |
}, |
| 59 |
"leftBgGradient": { |
| 60 |
"type": "string", |
| 61 |
"default": "linear-gradient(135deg,#6c3fb5,#4f2d85)" |
| 62 |
}, |
| 63 |
"leftBgImage": { |
| 64 |
"type": "string", |
| 65 |
"default": "" |
| 66 |
}, |
| 67 |
"leftBgImageId": { |
| 68 |
"type": "number", |
| 69 |
"default": 0 |
| 70 |
}, |
| 71 |
"leftBgPosition": { |
| 72 |
"type": "string", |
| 73 |
"default": "center center" |
| 74 |
}, |
| 75 |
"leftOverlay": { |
| 76 |
"type": "string", |
| 77 |
"default": "" |
| 78 |
}, |
| 79 |
"leftOverlayOpacity": { |
| 80 |
"type": "number", |
| 81 |
"default": 40 |
| 82 |
}, |
| 83 |
"leftPaddingX": { |
| 84 |
"type": "number", |
| 85 |
"default": 48 |
| 86 |
}, |
| 87 |
"leftPaddingY": { |
| 88 |
"type": "number", |
| 89 |
"default": 48 |
| 90 |
}, |
| 91 |
"leftTag": { |
| 92 |
"type": "string", |
| 93 |
"default": "h2" |
| 94 |
}, |
| 95 |
"leftHeading": { |
| 96 |
"type": "string", |
| 97 |
"default": "Bold headline here" |
| 98 |
}, |
| 99 |
"leftText": { |
| 100 |
"type": "string", |
| 101 |
"default": "Supporting paragraph that tells your story. Keep it concise and impactful." |
| 102 |
}, |
| 103 |
"leftBtnLabel": { |
| 104 |
"type": "string", |
| 105 |
"default": "Get Started" |
| 106 |
}, |
| 107 |
"leftBtnUrl": { |
| 108 |
"type": "string", |
| 109 |
"default": "#" |
| 110 |
}, |
| 111 |
"leftBtnBg": { |
| 112 |
"type": "string", |
| 113 |
"default": "#ffffff" |
| 114 |
}, |
| 115 |
"leftBtnColor": { |
| 116 |
"type": "string", |
| 117 |
"default": "#6c3fb5" |
| 118 |
}, |
| 119 |
"leftBtnRadius": { |
| 120 |
"type": "number", |
| 121 |
"default": 6 |
| 122 |
}, |
| 123 |
"leftTextAlign": { |
| 124 |
"type": "string", |
| 125 |
"default": "left" |
| 126 |
}, |
| 127 |
"leftHeadingColor": { |
| 128 |
"type": "string", |
| 129 |
"default": "#ffffff" |
| 130 |
}, |
| 131 |
"leftTextColor": { |
| 132 |
"type": "string", |
| 133 |
"default": "rgba(255,255,255,0.85)" |
| 134 |
}, |
| 135 |
"leftHeadingSize": { |
| 136 |
"type": "number", |
| 137 |
"default": 36 |
| 138 |
}, |
| 139 |
"leftHeadingWeight": { |
| 140 |
"type": "number", |
| 141 |
"default": 700 |
| 142 |
}, |
| 143 |
"leftShowBtn": { |
| 144 |
"type": "boolean", |
| 145 |
"default": true |
| 146 |
}, |
| 147 |
"rightBgType": { |
| 148 |
"type": "string", |
| 149 |
"default": "color" |
| 150 |
}, |
| 151 |
"rightBgColor": { |
| 152 |
"type": "string", |
| 153 |
"default": "#f5f5f7" |
| 154 |
}, |
| 155 |
"rightBgGradient": { |
| 156 |
"type": "string", |
| 157 |
"default": "linear-gradient(135deg,#f5f5f7,#e0e0e8)" |
| 158 |
}, |
| 159 |
"rightBgImage": { |
| 160 |
"type": "string", |
| 161 |
"default": "" |
| 162 |
}, |
| 163 |
"rightBgImageId": { |
| 164 |
"type": "number", |
| 165 |
"default": 0 |
| 166 |
}, |
| 167 |
"rightBgPosition": { |
| 168 |
"type": "string", |
| 169 |
"default": "center center" |
| 170 |
}, |
| 171 |
"rightOverlay": { |
| 172 |
"type": "string", |
| 173 |
"default": "" |
| 174 |
}, |
| 175 |
"rightOverlayOpacity": { |
| 176 |
"type": "number", |
| 177 |
"default": 40 |
| 178 |
}, |
| 179 |
"rightPaddingX": { |
| 180 |
"type": "number", |
| 181 |
"default": 48 |
| 182 |
}, |
| 183 |
"rightPaddingY": { |
| 184 |
"type": "number", |
| 185 |
"default": 48 |
| 186 |
}, |
| 187 |
"rightTag": { |
| 188 |
"type": "string", |
| 189 |
"default": "h2" |
| 190 |
}, |
| 191 |
"rightHeading": { |
| 192 |
"type": "string", |
| 193 |
"default": "Second panel headline" |
| 194 |
}, |
| 195 |
"rightText": { |
| 196 |
"type": "string", |
| 197 |
"default": "This panel can showcase a complementary message, an offer, or a visual highlight." |
| 198 |
}, |
| 199 |
"rightBtnLabel": { |
| 200 |
"type": "string", |
| 201 |
"default": "Learn More" |
| 202 |
}, |
| 203 |
"rightBtnUrl": { |
| 204 |
"type": "string", |
| 205 |
"default": "#" |
| 206 |
}, |
| 207 |
"rightBtnBg": { |
| 208 |
"type": "string", |
| 209 |
"default": "#6c3fb5" |
| 210 |
}, |
| 211 |
"rightBtnColor": { |
| 212 |
"type": "string", |
| 213 |
"default": "#ffffff" |
| 214 |
}, |
| 215 |
"rightBtnRadius": { |
| 216 |
"type": "number", |
| 217 |
"default": 6 |
| 218 |
}, |
| 219 |
"rightTextAlign": { |
| 220 |
"type": "string", |
| 221 |
"default": "left" |
| 222 |
}, |
| 223 |
"rightHeadingColor": { |
| 224 |
"type": "string", |
| 225 |
"default": "#1f2937" |
| 226 |
}, |
| 227 |
"rightTextColor": { |
| 228 |
"type": "string", |
| 229 |
"default": "#4b5563" |
| 230 |
}, |
| 231 |
"rightHeadingSize": { |
| 232 |
"type": "number", |
| 233 |
"default": 36 |
| 234 |
}, |
| 235 |
"rightHeadingWeight": { |
| 236 |
"type": "number", |
| 237 |
"default": 700 |
| 238 |
}, |
| 239 |
"rightShowBtn": { |
| 240 |
"type": "boolean", |
| 241 |
"default": true |
| 242 |
}, |
| 243 |
"leftHeadingTypo": { |
| 244 |
"type": "object", |
| 245 |
"default": {} |
| 246 |
}, |
| 247 |
"leftTextTypo": { |
| 248 |
"type": "object", |
| 249 |
"default": {} |
| 250 |
}, |
| 251 |
"leftBtnTypo": { |
| 252 |
"type": "object", |
| 253 |
"default": {} |
| 254 |
}, |
| 255 |
"rightHeadingTypo": { |
| 256 |
"type": "object", |
| 257 |
"default": {} |
| 258 |
}, |
| 259 |
"rightTextTypo": { |
| 260 |
"type": "object", |
| 261 |
"default": {} |
| 262 |
}, |
| 263 |
"rightBtnTypo": { |
| 264 |
"type": "object", |
| 265 |
"default": {} |
| 266 |
} |
| 267 |
} |
| 268 |
} |
| 269 |
|